JavaScript
JavaScript 字符串(String) 对象
字符串使用 indexOf() 来定位字符串中某一个指定的字符首次出现的位置
源代码:
点击运行 »
<p id="p1">Click the button to locate where "locate" first occurs.</p> <p id="p2">0</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var str = document.getElementById("p1").innerHTML; var n = str.indexOf("locate"); document.getElementById("p2").innerHTML = n + 1; } </script>
运行结果:
点击运行 »