当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript lastIndexOf() 方法

JavaScript
JS数学对象参考
JS字符串对象参考
JS函数参考
JS事件参考
Javascript 常用正则表达式
FF和IE下的js兼容性问题
jQuery 简单介绍
jQuery / 核心 / $(expression, [context] ) 函数
jQuery / 核心 / $(html) 函数
如何使用JS来判断浏览器类型(ie、firefox,等等)
Javascript在IE和FireFox中的不同表现
3个js字符编码函数区别
javascript 中的 XMLDOM 对象

JavaScript lastIndexOf() 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 421 ::
收藏到网摘: n/a

Definition and Usage
定义与用法

The lastIndexOf() method returns the position of the last occurrence of a specified string value, searching backwards from the specified position in a string.
lastIndexOf()方法返回指定值在字符串中的最后出现位置,对字符串进行逆向匹配。

Syntax
语法

stringObject.lastIndexOf(searchvalue,fromindex)

Parameter
参数
Description
注释
search
目标值
Required. Specifies a string value to search for
必选项。所要查找匹配的值
fromindex
起始位置
Optional. Specifies where to start the search. Starting backwards in the string
可选项。匹配开始的位置,逆向位置。


Tips and Notes
注意

Note: The lastIndexOf() method is case sensitive!
注意:lastIndexOf()方法是精确匹配的

Note: This method returns -1 if the string value to search for never occurs.
注意:如果没有可匹配的字符,返回-1


Example
实例

In this example we will do different searches within a "Hello world!" string:
在本例中,我们将对”Hello world“字符串进行不同的查找匹配:

<script type="text/javascript">
var str="Hello world!"
document.write(str.lastIndexOf("Hello") + "<br />")
document.write(str.lastIndexOf("World") + "<br />")
document.write(str.lastIndexOf("world"))
</script>

The output of the code above will be:
返回结果为:

0
-1
6


Try-It-Yourself Demos
互动演练

lastIndexOf()
How to use lastIndexOf() to search within a string.
如何用lastIndexOf()对一个字符串进行查找匹配

评论 (0) All

登陆 | 还没注册?