Javascript String indexOf 方法

返回 Javascript String 对象


定义

indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。

如果没有找到匹配的字符串则返回 -1。

注意: indexOf() 方法区分大小写。

提示: 同样你可以查看类似方法 lastIndexOf()

语法

语法如下:

string.indexOf(searchValue[, fromIndex])

参数值

  • searchvalue- 必需。规定需检索的字符串值。
  • fromIndex -可选的整数参数。规定在字符串中开始检索的位置。它的合法取值是 0 到 string Object.length - 1。如省略该参数,则将从字符串的首字符开始检索。

返回值

返回找到的出现的索引,如果未找到 则返回-1。

浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

所有主流浏览器都支持 indexOf() 方法。

示例

<html>
   <head>
      <title>JavaScript String indexOf() Method</title>
   </head>
   
   <body>      
      <script type = "text/javascript">
         var str1 = new String( "This is string one" );
         var index = str1.indexOf( "string" );
         document.write("indexOf found String :" + index ); 
         
         document.write("<br />");
         var index = str1.indexOf( "one" );
         document.write("indexOf found String :" + index ); 
      </script>  
   </body>
</html>

输出结果:

indexOf found String :8
indexOf found String :15 

尝试一下


返回 Javascript String 对象

查看笔记

扫码一下
查看教程更方便