今天还想用js的strstr, 试了一下, 错了, 该如下:
<html>
<body>
<script>
var str="Hello!"
document.write(str.indexOf("Hello") + "<br />")
document.write(str.indexOf("h") + "<br />")
document.write(str.indexOf("llo"))
</script>
</body>
</html>
可见, 判断子串, 需要用indexOf, 然后看返回值是否>=0