0

我有类似的 html 方案

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

我有 OnClick 功能

$(".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 ?

4

2 回答 2

6

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

$(".click").click(function () {
    $(this).parent().remove();
    return false;
});
于 2012-07-21T13:46:39.157 回答
3

.prev是兄弟姐妹,在你的情况下,li是父母,所以你可以使用.closest.

$(".click").click(function () {
        $(this).closest('li').remove();
        return false;
});
于 2012-07-21T13:47:03.097 回答