lastIndexOf js

-- 貌似直接就是lastindexof‘a‘ 就是a字符出现的最后的索引 --

<script type="text/javascript">
var str="Hello hello a world!"
document.write(str.lastIndexOf("World"))
document.write(str.lastIndexOf("orld"))
document.write(str.lastIndexOf("world"))
</script>
-------------

就是
stringObject.lastIndexOf(‘aaa‘)
就是返回aaa在stringObject中(从后面往前推)所在的索引号码
从0开始计数的。
如果在stringObject找不到aaa那就返回-1
-------------
http://www.w3school.com.cn/jsref/jsref_lastIndexOf.asp

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。