1. 程式人生 > >specific word count(index of) specific word count (index of )

specific word count(index of) specific word count (index of )

specific word count (index of )

 
<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>
輸出結果:
0,
-1,
6

轉自:wusifan的部落格
<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>
輸出結果:
0,
-1,
6

轉自:wusifan的
部落格