lastIndexOf() indexOf() localeCompare() 此方法返回指定值最后一次出现的调用String对象内的索引,从fromIndex开始搜索,如果未找到该值则返回-1。 语法 string.lastIndexOf(searchValue[, fromIndex]) 详细参数 searchValue - 表示要搜索的值的字符串。 fromIndex - 调用字符串中用于开始搜索的位置。它可以是0到字符串长度之间的任何整数。默认值为0。 返回值 返回最后找到的事件的索引,否则返回-1(如果未找到)。 例 var str1 = new String( "This is string one and again string" ); var index = str1.lastIndexOf( "string" ); console.log("lastIndexOf found String :" + index ); index = str1.lastIndexOf( "one" ); console.log("lastIndexOf found String :" + index ); 输出 lastIndexOf found String :29 lastIndexOf found String :15 indexOf() localeCompare()