代码编辑器:
x
1
<p id="demo">单击按钮从位置20开始查找给定值最后出现的位置</p>
2
<button onclick="myFunction()">点我</button>
3
<script>
4
function myFunction(){
5
var str="I am from twle,welcome to twle site.";
6
var n=str.lastIndexOf("twle", 20);
7
document.getElementById("demo").innerHTML=n;
8
}
9
</script>
10