-- 貌似直接就是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