Home  >  Article  >  Web Front-end  >  How to determine which number is selected in jquery

How to determine which number is selected in jquery

WBOY
WBOYOriginal
2022-01-10 16:38:311807browse

In jquery, you can use the index() method to determine which element the selected element is. This method is used to return the index position of the specified element relative to other specified elements. The syntax is "specified element object.index" (this)".

How to determine which number is selected in jquery

The operating environment of this tutorial: windows10 system, jquery3.2.1 version, Dell G3 computer.

How does jquery determine which number is selected

Suppose there is the following HTML code:

<ul>
    <li>jQuery判断当前元素是第几个元素示例</li>
    <li>jQuery获取第N个元素示例</li>
    <li>jQuery选择器示例</li></ul>

jQuery judgment Which element is the current element?

If we click on any li tag and want to know which li tag is currently clicked, we can use the following code:

$("ul li").click(function () {
    var index = $("ul li").index(this);
    alert(index);
 });

Such as the jQuery above Code, if you click on the first one, it will prompt "0", if it is the second li tag, it will prompt "1", please note that the index sequence number starts from 0.

index() method returns the index position of the specified element relative to other specified elements.

These elements can be specified via jQuery selectors or DOM elements.

Note: If the element is not found, index() will return -1.

Recommended related video tutorials: jQuery video tutorial

The above is the detailed content of How to determine which number is selected in jquery. For more information, please follow other related articles on the PHP Chinese website!

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