JavaScript中的lastIndexOf()方法使用详解
程序员文章站
2022-06-07 15:26:17
此方法调用string对象之内返回索引指定的值最后一次出现,开始搜索在的fromindex或如果没有找到该值则返回-1。
语法
string.las...
此方法调用string对象之内返回索引指定的值最后一次出现,开始搜索在的fromindex或如果没有找到该值则返回-1。
语法
string.lastindexof(searchvalue[, fromindex])
下面是参数的详细信息:
- searchvalue : 一个字符串,表示要搜索的值
- fromindex : 在调用字符串内的位置,从开始搜索。它是介于0-字符串的长度任意整数。缺省值是0。
返回值:
返回最后出现的索引,如果没有找到则为-1
例子:
<html> <head> <title>javascript string lastindexof() method</title> </head> <body> <script type="text/javascript"> var str1 = new string( "this is string one and again string" ); var index = str1.lastindexof( "string" ); document.write("lastindexof found string :" + index ); document.write("<br />"); var index = str1.lastindexof( "one" ); document.write("lastindexof found string :" + index ); </script> </body> </html>
这将产生以下结果:
lastindexof found string :29 lastindexof found string :15
上一篇: 如何快速识别U盘型号都有哪些方法
推荐阅读
-
IE浏览器中图片onload事件无效的解决方法_javascript技巧
-
PHP的Yii框架使用中的一些错误解决方法与建议
-
php中json_decode()和json_encode()的使用方法
-
MySql中关于正则表达式查询的使用方法介绍
-
Sublime text 二/3 中 Package Control 的安装与使用方法
-
node.js中的fs.linkSync方法使用说明_node.js
-
jquery中.add()的使用方法解析
-
详解PHP中的mb_detect_encoding函数使用方法
-
详解Django中的ifequal和ifnotequal标签使用
-
javascript require.js的具体使用方法