简单教程
提交运行
代码编辑器:
<p id="demo">单击按钮从位置20开始查找给定值最后出现的位置</p> <p>定位在第 9 个字符,并从第 9 个字符开始往前搜索结果为 -1</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var str="I am from twle,welcome to twle site."; var n=str.lastIndexOf("twle", 9); document.getElementById("demo").innerHTML=n; } </script>
运行结果: