この記事の例では、JavaScript が IndexOf を使用して文字列内の部分文字列の位置を取得する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。
<!DOCTYPE html> <html> <body> <p id="demo"> Click the button to locate where in the string a specifed value occurs.</p> <button onclick="myFunction()">Try it</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>
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。