-2

返回模式在字符串中开始的索引(如果未找到,则返回 -1)。如果第三个参数为真,则搜索区分大小写,否则不区分大小写。

Examples
index("abAB12","AB",true) returns 2 but index("abAB12","AB",false) returns 0
index("abAB12","BA",true) returns -1 and index("abAB12","BA",false) returns 1
4

1 回答 1

1

也许是这样的:

var str = "abAB12";
var i = str.indexOf("AB");
if (i < str.length / 2) {
  //stuff
} else {
  //other stuff
}
于 2013-11-07T06:54:48.093 回答