关于JavaScript lastIndexOf() 方法 w3school.com.cn写的不一定全对

Posted eastegg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于JavaScript lastIndexOf() 方法 w3school.com.cn写的不一定全对相关的知识,希望对你有一定的参考价值。

关于javascript lastIndexOf() 方法 w3school.com.cn的表述是

定义和用法

lastIndexOf() 方法可返回一个指定的字符串值最后出现的位置,在一个字符串中的指定位置从后向前搜索。

 

( 原文 http://www.w3school.com.cn/jsref/jsref_lastIndexOf.asp )

 

但是如果搜索项在内容里是唯一的,例如

var str="Hello world!"
document.write(str.lastIndexOf("Hello") + "<br />") //结果是0

 

( 参考实验 http://www.w3school.com.cn/tiy/t.asp?f=jseg_lastindexof )

 

那么如果是从后向前搜索,返回的应该是str的长度。也就是str.length


以上是关于关于JavaScript lastIndexOf() 方法 w3school.com.cn写的不一定全对的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript indexOf() 方法和 lastIndexOf() 方法

html 在JavaScript.html中的il metodo lastIndexOf()

html 在JavaScript.html中的il metodo lastIndexOf()

javascript学习系列(15):数组中的lastIndexOf方法

#yyds干货盘点# javascript学习系列(15):数组中的lastIndexOf方法

JavaScript基础 lastIndexOf 从右往左查找 返回一个子字符串在原始字符串中的索引