Home  >  Article  >  Web Front-end  >  How to determine which element the current element is in jquery

How to determine which element the current element is in jquery

青灯夜游
青灯夜游Original
2021-11-15 17:46:324196browse

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()

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>

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!

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