当前位置:Gxlcms > JavaScript > lastIndexOf方法怎么使用

lastIndexOf方法怎么使用

时间:2021-07-01 10:21:17 帮助过:59人阅读

lastIndexOf() 方法可返回一个指定的字符串值最后出现的位置,如果指定第二个参数 start,则在一个字符串中的指定位置从后向前搜索。下面我们就来具体看看lastIndexOf方法的使用方法。

JavaScript

我们先来看一下lastIndexOf()的基本语法

arr.lastIndexOf(searchElement[,index])

lastIndexOf()的第一个参数是searchElement,它是要在数组中搜索的值。第二个参数是可选的index,它定义数组中的起始索引,从中向后搜索元素。如果未提供此参数,则将index arr.length -作为开始向后搜索的起始索引,因为它是默认值。

lastIndexOf()返回searchElement最后一次出现的索引。如果在数组中找不到该元素,则此函数返回-1。

下面我们来看具体示例

函数lastindexof()返回出现2的最后一个索引,即0.

代码如下

<!DOCTYPE html>
<html>
<head>
  <title></title>
</head>
<body>
<script> 
function func() { 
    var array = [2, 9, 9]; 
    document.write(array.lastIndexOf(2)); 
} 
func(); 
</script> 
</body>
</html>

输出结果为:0

函数lastindexof()查找最后出现的索引45。因为它不存在,所以函数返回-1。

代码如下

<!DOCTYPE html>
<html>
<head>
  <title></title>
</head>
<body>
<script> 
function func() { 
    var array = [2, 98, 12, 45]; 
    document.write(array.lastIndexOf(45,2)); 
} 
  
func(); 
</script>
</body>
</html>

输出结果为:-1.

本篇文章到这里就全部已经结束了,更多精彩内容大家可以关注Gxl网的其他相关栏目教程!!!

以上就是lastIndexOf方法怎么使用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行