返回字符串中指定文本首次出现的位置 - indexOf()方法
- <html>
- <body>
- <script type="text/javascript">
- var str="Hello world!"
- document.write(str.indexOf("Hello") + "<br />")
- document.write(str.indexOf("World") + "<br />")
- document.write(str.indexOf("world"))
- </script>
- </body>
- </html>