标签: jquery html
我想从特定的div中删除所有<a href>。
<a href>
<div class="postInfo"> <a href> </div>
我正在尝试
$('.postInfo href').remove();
这不起作用。我究竟做错了什么?
答案 0 :(得分:6)
定位锚点,而不是href:
$('.postInfo a').remove();