search
HomeWeb Front-endHTML TutorialJavaScript学习笔记:数组(六)_html/css_WEB-ITnose

众所都之,数组项在一个数组中都有自己的位置。在JavaScript中提供了两个确定数组项位置的方法: indexOf() 和 lastIndexOf() 。今天我们主要一起学习这两个方法是如何使用,又是如何查找出数组项在数组中的确切位置。

indexOf() 方法

indexOf() 方法从数组的开头(位置为 0 )开始向后查询。 indexOf() 方法返回指定数组项在数组中找到的第一索引值。如果通过 indexOf() 查找指定的数组项在数组中不存在,那么返回的值会是 -1 。

语法

indexOf() 使用的语法非常的简单:

arr.indexOf(searchElement[, fromIndex = 0])
  • searchElement : 是指定要查找的数组项
  • fromIndex : 开始查找的位置。

如果该索引值( fromIndex )大于或等于数组长度( length ),意味着不会在数组里查找,返回 -1 。如果参数中提供的索引值是一个负值,则将其作为数组末尾的一个抵消,即 -1 表示从最后一个元素开始查找, -2 表示从倒数第二个元素开始查找 ,以此类推。

注意:如果参数中提供的索引值是一个负值,仍然从前向后查询数组。如果抵消后的索引值仍小于 0 ,则整个数组都将会被查询。其默认值为 0 。

示例

一起来看看使用示例:

var arr = [0,1,2,3,4,5,6,5,4,3,2,1,0];console.log(arr.length); // 13arr.indexOf(2); // 2arr.indexOf(7); // -1arr.indexOf(9, 2); // -1arr.indexOf(2, -1); // -1arr.indexOf(2, -3); // 10

来看看相关的位置示意图:

arr.indexOf(2)

arr.indexOf(2) 表示的是从数组 arr 第 0 索引值开始查找第一个数组项 2 ,并且返回其在数组中对应的索引值:

arr.indexOf(7)

arr.indexOf(7) 其要在数组确定数组项 7 的索引值,但整个数组 arr 并没有数组项 7 的存在,如此一来, indexOf() 方法在 arr 数组中找不到数组项 7 。这样一来就 arr.indexOf(7) 就会返回的值为 -1 。

arr.indexOf(9, 2)

arr.indexOf(9, 2) 表示从数组 arr 的第 2 个索引值位置开始查找数组项 9 ,但整个数组 arr 中并没有数组项 9 的存在,这样一来, indexOf() 方法在 arr 数组中找不到数组项 9 。那其最后返回的值为 -1 。

arr.indexOf(2, -1)

arr.indexOf(2, -1) 表示的是从数组 arr 最后一个(相当于 arr.length - 1 ,也就是 12 )开始查找数组项第一个 2 。如果不存在将返回 -1 。

arr.indexOf(2, -3)

arr.indexOf(2, -3) 表示从数组 arr 倒数的第 3 个索引值(相当于 arr.length-3 ,也就是 10 )开始查找数组项中第一个 2 。在这个示例中将返回的值为 10 。

从上面的示例可以告诉我们,如果 indexOf() 返回的值为 -1 时,就可以轻松的判断这个数组项是否在数组中存在。比如:

var arr = ['a','b','c'];function arrIndexOf (arrayItems, arrayItem) {    if (arrayItems.indexOf(arrayItem) === -1) {        console.log(arrayItem + '不在[' + arrayItems + ']数组中');    }    else if (arrayItems.indexOf(arrayItem) > -1){        console.log(arrayItem + '在[' + arrayItems + ']数组中的索引值是:' + arrayItems.indexOf(arrayItem));    }}arrIndexOf(arr, 'c'); // c在[a,b,c]数组中的索引值是:2arrIndexOf(arr, 'd'); //d不在[a,b,c]数组中

兼容性处理

值得注意的是 indexOf() 方法并不是所有浏览器都支持(IE9+、Firefox2+、Safari 3+、Opera 9.5+和Chrome)。如果希望在能更好的让浏览器支持 indexOf() 方法,你可以在你的代码顶部添加下面的这部分代码:

if (!Array.prototype.indexOf) {    Array.prototype.indexOf = function(elt /*, from*/) {        var len = this.length;        var from = Number(arguments[1]) || 0;        from = (from < 0) ? Math.ceil(from) : Math.floor(from);        if (from < 0) {            from += len;            for (; from < len; from++) {                if (from in this && this[from] === elt) {                    return from;                }            }            return -1;        };    }  }

lastIndexOf() 方法

lastIndexOf() 方法和 indexOf() 刚好相反,从一个数组中末尾向前查找数组项,并且返回数组项在数组中的索引值,如果不存在,则返回的值是 -1 。

语法

lastIndexOf() 方法的语法规则如下:

arr.lastIndexOf(searchElement[, fromIndex = arr.length - 1])
  • searchElement :需要查找的数组项
  • fromIndex : 从数组的末尾开始向前查找,默认值为 arr.length -

和 indexOf() 方法一样,如果 fromIndex 值大于或等于数组的长度( arr.length ),则整个数组会被查找。如果参数中提供的索引值是一个负值,则将其作为数组末尾的一个抵消,即 -1 表示从最后一个元素开始查找, -2 表示从倒数第二个元素开始查找 ,以此类推。另外,如果该值为负时,其绝对值大于数组长度,则方法返回 -1 ,即数组不会被查找。如果值为正数,表示的是数组中对应的位置,向数组前查找。

示例

一起来看看 lastIndexOf() 方法的使用示例:

var arr = [0,1,2,3,4,5,6,5,4,3,2,1,0];console.log(arr.length); // 13arr.lastIndexOf(2); // 10arr.lastIndexOf(7); // -1arr.lastIndexOf(9, 2); // -1arr.lastIndexOf(4,9); // 8arr.lastIndexOf(2, -1); // 10

来看看相关的位置示意图:

arr.lastIndexOf(2)

arr.lastIndexOf(2) 表示从数组 arr 末尾( arr.length - 1 )向前查找数组项 2 的索引值。将返回的索引值为 10 :

arr.lastIndexOf(7)

arr.lastIndexOf(7) 表示从数组 arr 末尾( arr.length - 1 )向前查找数组项 7 的索引值。由于整个数组 arr 都没有数组项 7 ,因此其将返回的值为 -1 :

arr.lastIndexOf(9, 2)

arr.lastIndexOf(9, 2) 表示从数组 arr 倒数第二位向前查找数组项 9 的索引值。由于整个数组 arr 都没有数组项 9 ,因此其将返回的值为 -1 :

arr.lastIndexOf(4,9)

arr.lastIndexOf(4,9) 表示从数组 arr 索值值为 9 的位置查找第一个数组项为 4 。其返回的值为 8 :

arr.lastIndexOf(2, -1)

arr.lastIndexOf(2, -1) 表示的从数组 arr 倒数第一个位置向前查找第一个数组项 2 ,其返回的值``:

使用 lastIndexOf() 方法查找一个数组项时,如果数组项不在数组中时,其返回的值同样为 -1 。如此一来,也可以像使用 indexOf() 方法一样, lastIndexOf() 可以用来判断数组项是不是在数组中:

var arr = ['a','b','c'];function arrLastIndexOf (arrayItems, arrayItem) {    if (arrayItems.lastIndexOf(arrayItem) === -1) {        console.log(arrayItem + '不在[' + arrayItems + ']数组中');    }    else if (arrayItems.lastIndexOf(arrayItem) > -1){        console.log(arrayItem + '在[' + arrayItems + ']数组中的索引值是:' + arrayItems.lastIndexOf(arrayItem));    }}arrIndexOf(arr, 'c'); // c在[a,b,c]数组中的索引值是:2arrIndexOf(arr, 'd'); //d不在[a,b,c]数组中

兼容性处理

还有 lastIndexOf() 也只在IE9+、Firefox2+、Safari 3+、Opera 9.5+和Chrome得到支持,如果希望自己的代码更健壮,在使用 lastIndexOf() 方法的前面需要添加下面的代码:

if (!Array.prototype.lastIndexOf) {    Array.prototype.lastIndexOf = function(elt /*, from*/) {        var len = this.length;        var from = Number(arguments[1]);        if (isNaN(from)) {            from = len - 1;        } else {            from = (from < 0) ? Math.ceil(from) : Math.floor(from);            if (from < 0) {                from += len;            } else if (from >= len){                from = len - 1;            }        }        for (; from > -1; from--) {            if (from in this && this[from] === elt) {                return from;            }        }        return -1;    };}

总结

indexOf() 和 lastIndexOf() 两个方法都是用来查找数组项在一个数组中的索引值,其中 indexOf() 是从前向后寻找,而 lastIndexOf() 是从后向前寻找。如果数组项不在数组中,返回的值为 -1 。这样一来,可以使用 indexOf() 或 lastIndexOf() 的值是否全等于( === ) -1 来做判断。

初学者学习笔记,如有不对,还希望高手指点。如有造成误解,还希望多多谅解。

大漠

常用昵称“大漠”,W3CPlus创始人,目前就职于手淘。中国Drupal社区核心成员之一。对HTML5、CSS3和Sass等前端脚本语言有非常深入的认识和丰富的实践经验,尤其专注对CSS3的研究,是国内最早研究和使用CSS3技术的一批人。CSS3、Sass和Drupal中国布道者。2014年出版《 图解CSS3:核心技术与案例实战 》。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment