我有喜欢的HTML方案

<li>Some text <a href='#' class='click'>Remove</a> <input type='hidden' ></li>


而且我有像

$(".click").click(function() {
    // i need to select 'li' and then delete it
    // i have this code, but its not working
    $(this).prev('li').remove();
    return false;
});


如何选择上一个html标签onClick?

最佳答案

li不是上一个元素,而是父元素:

$(".click").click(function () {
    $(this).parent().remove();
    return false;
});

关于javascript - 选择以前的html标签onClick,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11592714/

10-16 15:51