W3School TIY
编辑您的代码:
<html> <body> <script type="text/javascript"> var str="Hello world!" document.write(str.search("world") + "<br />") document.write(str.search("World") + "<br />") document.write(str.search("woorld") + "<br />") </script> </body> </html>
查看结果: