0

我想知道被点击的 li 元素在无序列表中的索引。如何使用 jQuery 实现这一点?

4

4 回答 4

3
$('ul li').on('click', function(ev) {
   var index = $(this).index();
});
于 2012-04-26T10:51:33.427 回答
2

这个 ? http://api.jquery.com/index/

<head>
  <style>
div { background:yellow; margin:5px; }
span { color:red; }
</style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <span>Click a div!</span>
<div>First div</div>
<div>Second div</div>
<div>Third div</div>
<script>
$("div").click(function () {
  // this is the dom element clicked
  var index = $("div").index(this);
  $("span").text("That was div index #" + index);
});
</script>

</body>
</html>

来自 Jquery Api 的代码

于 2012-04-26T10:53:21.640 回答
2
$( 'li' ).on( 'click', function() {
    $( this ).index()
} )
于 2012-04-26T10:51:51.080 回答
0

这样做: -

$('li').click(function() {
   alert($(this).index());
});
于 2012-04-26T10:57:43.353 回答