码迷,mamicode.com
首页 > 其他好文 > 详细

关于indexOf方法

时间:2016-04-15 18:25:37      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

indexOf()的用法:返回字符中indexof(string)中字串string在父串中首次出现的位置,从0开始!没有返回-1;方便判断和截取字符串!

<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

 

关于indexOf方法

标签:

原文地址:http://www.cnblogs.com/JAYIT/p/5396198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!