检查列表中的元素是否是第一个

时间:2014-06-23 14:55:07

标签: jquery dom-manipulation

我有一个列表,我使用jQuery来删除列表对象。

$(document).off('click', '#delete').on('click', '#delete',function(e) {
    $(this).parent().remove();
}); 

我想知道如何判断被删除的元素是否是列表中的第一个?

3 个答案:

答案 0 :(得分:2)

您还可以使用.index()位置。此函数返回一个基于零的索引,因此,对于第一个元素,您得到0.另一个有趣的点是,javascript中的0是false,所有其他数字都是true。如果元素是第一个元素,则.index()函数返回false

$(document).off('click', '#delete').on('click', '#delete',function(e) {
    if(!$(this).parent().index()){
        //the element is the first element
    }
});

This is the full DOC for the .index() function.

答案 1 :(得分:1)

您可以使用is:first

所以它会是这样的:

if($(this).parent().is(':first')) {
    // this was the first element
}

答案 2 :(得分:1)

您可以使用is方法:

if ($(this).parent().is(':first-child'))
{
}

请参阅Documentation