jQuery如何獲取當前元素的索引

admin發表於2017-02-13
獲取元素的索引在一些操作中相當重要,例如選項卡或者下拉選單的中可能會遇到,當然要根據特定的實現方式而定。

下面是一段獲取當前元素索引的程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="http://www.softwhy.com/" />
<title>jQuery如何獲取當前元素的索引</title>
<style type="text/css"> 
li{ 
  list-style:none;
  width:100px;
  height:40px;
  background-color:green;
  margin-bottom:10px; 
} 
</style> 
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript"> 
$(function(){ 
  $("li").mouseenter(function(){ 
    alert($(this).index()); 
  }); 
}) 
</script> 
</head> 
<body> 
<ul>
<li>第一個li</li>
<li>第一個li</li>
<li>第一個li</li>
<li>第一個li</li>
</ul>
</body> 
</html>

以上程式碼可以在當滑鼠放在li元素上時,彈出當前li元素的索引值。

說明:index()的索引值是從0開始的。

相關文章