Home > Web Front-end > JS Tutorial > body text

How to determine which element the current element is in jquery

青灯夜游
Release: 2021-11-15 17:46:32
Original
4204 people have browsed it

In jquery, you can use the index() method to determine which element the current element is. This method can return the index position of the specified element relative to other specified elements; the syntax "$(selector).index( )".

How to determine which element the current element is in jquery

The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.

In jquery, you can use the index() method to determine which element the current element is.

index() method returns the index position of the specified element relative to other specified elements. Note that the index sequence number starts from 0.

Syntax:

$(selector).index()
Copy after login

Example:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<script src="js/jquery-1.10.2.min.js"></script>
	</head>
	<body>
		<ul>
			<li>第一个li</li>
			<li>第二个li</li>
			<li>第三个li</li>
		</ul>
		<script type="text/javascript">
			$(document).ready(function(){
			  $("li").click(function(){
			    alert($(this).index());
			  });
			});
		</script>
	</body>
</html>
Copy after login

The above jQuery code, because the index sequence number starts from 0, if the first one is clicked If it is the second li tag, it will prompt "0". If it is the second li tag, it will prompt "1".

How to determine which element the current element is in jquery

Related tutorial recommendations: jQuery video tutorial

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template