我有一个列表,我使用jQuery来删除列表对象。
$(document).off('click', '#delete').on('click', '#delete',function(e) {
$(this).parent().remove();
});
我想知道如何判断被删除的元素是否是列表中的第一个?
答案 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
}
});
答案 1 :(得分:1)
答案 2 :(得分:1)