jquery中如何獲取索引號(hào)

養(yǎng)魚的貓咪
327
2021-05-19 15:14:43

在jquery中獲取索引號(hào)的方法:1.新建html項(xiàng)目,引入jquery;2.創(chuàng)建html測(cè)試標(biāo)簽;3.通過(guò)標(biāo)簽名獲取對(duì)象,使用index()方法返回索引號(hào);


jquery中如何獲取索引號(hào)


具體步驟如下:

1.首先,新建一個(gè)html項(xiàng)目,并在項(xiàng)目中引入jquery;


<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>


2.引入jquery后,在項(xiàng)目中創(chuàng)建html標(biāo)簽,用于測(cè)試;


<a href="#">測(cè)試標(biāo)簽1</a>

<a href="#">測(cè)試標(biāo)簽2</a>

<a href="#">測(cè)試標(biāo)簽3</a>

3.測(cè)試標(biāo)簽創(chuàng)建好后,通過(guò)標(biāo)簽名獲取對(duì)象,在使用index()方法即可返回標(biāo)簽的索引號(hào);


$(function(){

$("a").click(function(){

alert($(this).index());

})

})



0