一、代码如下
二、效果如下
<!DOCTYPE html> <html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <body> <h1>我的第一张网页</h1> <p id="demo"></p> <script> var txt = "曾经沧海难为水,除却巫山不是云。曾经沧海难为水,除却巫山不是云。"; var pos1 = txt.indexOf("沧海"); var pos2 = txt.indexOf("沧海" , 5); var pos3 = txt.lastIndexOf("沧海"); //LastIndexOf的第二个参数表上,从这个字符开始,向前查询 var pos4 = txt.lastIndexOf("沧海" , 15); document.getElementById("demo").innerHTML = pos1 + ' - ' + pos2 + ' - ' + pos3 + ' - ' + pos4; </script> </body> </html>