jQuery如何獲取當前li元素是第幾個?
網友問:
比如有一個li的列表,如果知道當前的li是第幾個li元素:
<ul>
<li></li>
<li></li>
<li></li>
</ul>
像這樣的結構,我如何知道當前操作的li是第幾個
解決案例:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.45it.com/" />
<title>螞蟻部落</title>
<style type="text/css">
ul{
list-style:none;
width:100px;
height:25px;
line-height:25px;
font-size:12px;
}
</style>
<script type="text/javascript">
window.onload=function(){
var obox=document.getElementById("box");
var oshow=document.getElementById("show");
var lis=obox.getElementsByTagName("li");
for(var index=0;index<lis.length;index++){
lis[index].theIndex=index;
lis[index].onclick=function(){
oshow.innerHTML=this.theIndex;
}
}
}
</script>
</head>
<body>
<div>當前元素的順序:<span id="show"></span></div>
<ul id="box">
<li>螞蟻部落一</li>
<li>螞蟻部落二</li>
<li>螞蟻部落三</li>
<li>螞蟻部落四</li>
<li>螞蟻部落五</li>
<li>螞蟻部落六</li>
</ul>
</body>
</html>