当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript indexOf() 方法

JavaScript
JS 字符串
JS Date
JS数组,JS Array
JS Boolean
JS Math
JS HTML DOM
JS Browser
JS Cookies
JS 校验
JS Animation
JS Image Maps
JS Timing
JS 建立对象
JS 摘要
JS 实例
JS 对象实例
JS DOM 实例
JS数组对象参考
JS布尔对象参考
JS日期对象参考

JavaScript indexOf() 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 413 ::
收藏到网摘: n/a

Definition and Usage
定义与用法

The indexOf() method returns the position of the first occurrence of a specified string value in a string.
indexOf()方法返回指定值在字符串中第一次出现的位置

Syntax
语法

stringObject.indexOf(searchvalue,fromindex)

Parameter
参数
Description
注释
searchvalue
所要匹配的值
Required. Specifies a string value to search for
必选项。指定所要查找匹配的值
fromindex
起始位置
Optional. Specifies where to start the search
可选项。匹配开始的位置


Tips and Notes
注意

Note: The indexOf() method is case sensitive!
注意:indexOf()方法是精确匹配的

Note: This method returns -1 if the string value to search for never occurs.
注意:如果没有可匹配的值,返回 -1


Example
实例

In this example we will do different searches within a "Hello world!" string:
在本例中,我们将对”Hello world!“字符串进行不同的查找匹配:

<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>

The output of the code above will be:
返回结果为:

0
-1
6


Try-It-Yourself Demos
互动演练

indexOf()
How to use indexOf() to search within a string.
如何用indexOf()对字符串进行查找匹配

评论 (0) All

登陆 | 还没注册?