lastIndexOf()方法返回指定值在字符串中最后一次出現(xiàn)的位置。
如果找不到該值,則將返回-1。
如果該值存在多次,它將返回最后一次出現(xiàn)的位置。
如果要從頭到尾進(jìn)行搜索,請使用indexOf()方法。
注意:有關(guān)Array方法,請參見Array.lastIndexOf()。
string.lastIndexOf(searchValue, start)
var str = 'Hello world, I repeat Hello world'; str.lastIndexOf('Hello');測試看看?/?
注意:此方法區(qū)分大小寫。
所有瀏覽器都完全支持lastIndexOf()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
lastIndexOf() | 是 | 是 | 是 | 是 | 是 |
參數(shù) | 描述 |
---|---|
searchValue | (必需)表示要搜索的值的字符串 |
start | (可選)一個整數(shù),表示開始搜索的索引(向后搜索);默認(rèn)是字符串的長度 |
返回值: | 最后一次出現(xiàn)的searchValue的索引,如果未找到則為-1 |
---|---|
JavaScript版本: | ECMAScript 1 |
返回字符串中字符“ O”的最后一個位置,在位置5開始搜索(向后搜索):
var str = 'HELLO WORLD HELLO'; str.lastIndexOf('O', 5);測試看看?/?