我在正文中有一个这样的 HTML 片段
<div class="screen"></div>
<div class="screen"></div>
现在,我应该如何获得每个元素的索引号?
$(".screen").click(function(){
// get this element's index() number
})
我试过$(this).index()
但它返回-1。
.index() documentation
$(this).index();
Try this ..
$(".screen").click(function(){
// get this element's index() number
alert($(this).index())
})
这将起作用,
$(".screen").click(function(){
// get this element's index() number
alert($(this).index())
});
$(".screen").click(function(){
// get this element's index() number
alert('Index: ' + $('div').index(this));
})
var $screens = $(".screen").click(function(){
// get this element's index() number
alert($screens.index(this))
})
演示:小提琴