简单教程
提交运行
代码编辑器:
<p id="demo">单击按钮显示指定值最后一次出现的位置</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var str="I am from twle,welcome to tw;e site."; var n=str.lastIndexOf("twle"); document.getElementById("demo").innerHTML=n; } </script>
运行结果: