1、字符串使用 indexOf() 来定位字符串中某一个指定的字符首次出现的位置
例如:var str="Hello, welcome to the universe.";
var n=str.indexOf("welcome");
如果没找到对应的字符函数返回-1
2、lastIndexOf() 方法在字符串末尾开始查找字符串出现的位置1、字符串使用 indexOf() 来定位字符串中某一个指定的字符首次出现的位置
例如:var str="Hello, welcome to the universe.";
var n=str.indexOf("welcome");
如果没找到对应的字符函数返回-1
2、lastIndexOf() 方法在字符串末尾开始查找字符串出现的位置