<script type="text/javascript"> var mystr="Hello World!" document.write(mystr.indexOf("h"));
为什么输出的h不是0而是-1?
0是大写的H,你这小写的没有在字符串里
indexOf区分大小写的