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

Ant*_*ony -8 html jquery

我想<a href>从特定div中删除所有内容.

<div class="postInfo">
    <a href>
</div>
Run Code Online (Sandbox Code Playgroud)

我在尝试

$('.postInfo href').remove();
Run Code Online (Sandbox Code Playgroud)

那不行.我究竟做错了什么?

ade*_*neo 6

定位锚点,而不是href:

$('.postInfo a').remove();
Run Code Online (Sandbox Code Playgroud)