返回 String 对象中子字符串最后出现的位置。
strObj.lastIndexOf(substring[, startindex])
strObj
必选项。String 对象或文字。
substring
必选项。要在 String 对象内查找的子字符串。
startindex
可选项。该整数值指出在 String 对象内进行查找的开始索引位置。假如省略,则查找从字符串的末尾开始。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)说明lastIndexOf 方法返回一个整数值,指出 String 对象内子字符串的开始位置。假如没有找到子字符串,则返回 -1。
假如 startindex 是负数,则 startindex 被当作零。假如它比最大字符位置索引还大,则它被当作最大的可能索引。
从右向左执行查找。否则,该方法和 indexOf 相同。
下面的示例说明了 lastIndexOf 方法的用法:
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)function lastIndexDemo(str2){
var str1 = "BABEBIBOBUBABEBIBOBU"
var s = str1.lastIndexOf(str2);
return(s);
}