检查索引jquery

时间:2010-04-11 01:39:59

标签: jquery

有没有办法让我没有循环?喜欢e.ThisIndex?

$('#userContentImages li a').live('click', function (e) {
    if (e.button != 0)
        return false;
    var objs = $('#userContentImages li a');    
    for(var i=0; i<objs.length; i++)
    {
        if($(this).get(0) == objs.get(i))
            break;
    }
    //do stuff
    return false;
});

1 个答案:

答案 0 :(得分:3)

var i = $('#userContentImages li a').index(this);