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<...[ 查看全文 ]