在jquery中獲取索引號的方法:1.新建html項目,引入jquery;2.創建html測試標簽;3.通過標簽名獲取對象,使用index()方法返回索引號;
具體步驟如下:
1.首先,新建一個html項目,并在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中創建html標簽,用于測試;
<a href="#">測試標簽1</a><a href="#">測試標簽2</a>
<a href="#">測試標簽3</a>
3.測試標簽創建好后,通過標簽名獲取對象,在使用index()方法即可返回標簽的索引號;
$(function(){
$("a").click(function(){
alert($(this).index());
})
})