jQuery的delegate()方法,当前元素的索引号?

时间:2010-11-02 17:28:01

标签: jquery

使用jQuery的delegate()方法,我可以得到当前元素的索引号吗?

例如:

$('#tracks').delegate('.track-item', 'click', function(e) {
    e.preventDefault();
    alert($('.track-item').index(this));
});

有没有人有这个优雅的解决方案?

2 个答案:

答案 0 :(得分:2)

你有什么作品,you can see it in action here

另一种形式是:

alert($(this).index('.track-item'));

You can try that one here

答案 1 :(得分:1)

这应该完美无缺。有什么问题?