源代碼
點擊運行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>教程</title> </head> <body> <p id="demo">單擊按鈕來定位指定文本首次出現的位置。</p> <button onclick="myFunction()">點我</button> <script> function myFunction(){ var str="Hello world, welcome to the universe."; var n=str.indexOf("welcome"); document.getElementById("demo").innerHTML=n; } </script> </body> </html>
運行結果