删除所有<a href=""> from a specific div</a>

时间:2013-07-12 16:23:32

标签: jquery html

我想从特定的div中删除所有<a href>

<div class="postInfo">
    <a href>
</div>

我正在尝试

$('.postInfo href').remove();

这不起作用。我究竟做错了什么?

1 个答案:

答案 0 :(得分:6)

定位锚点,而不是href:

$('.postInfo a').remove();
相关问题