如何查找单击的节点并使用jquery删除其父节点

时间:2012-04-07 01:37:22

标签: javascript jquery jquery-mobile xhtml

<script type="text/javascript">
$(document).ready(function($) {
    $("a.delete").click{function(){
        $(this).parent().remove();
    }
});
</script>

<li>
    <a href="index.html">
        <h3>1</h3>
    </a>
    <a href="javascript:void(0)" onclick = "" id = "我" class = "delete">删除关注</a>
</li>

但是当我点击那个按钮时,控制台中出现“Uncaught SyntaxError:Unexpected token”。如何制作它,我很困惑。如果可能,我想要一些示例代码,非常感谢

1 个答案:

答案 0 :(得分:0)

如果你有一个特定的<ul>目标,请使用它的类名或ID来指定

$(function(){
    $('ul').on('click','a.delete',function(){
        $(this).closest('li').remove()
    });
});

DEMO