根据here,jquery的删除功能应该像这样工作..
$('div').remove('selector');
我在这个例子中尝试。
HTML:
<div class="wrapper">
<p class="unwanted">This should be removed</p>
<p class="retained">This will remain</p>
</div>
JavaScript:
jQuery(document).ready(function($) {
$('div').remove('p.unwanted'); //not working
//$('p.unwanted').remove(); //this works
});
它不工作。我究竟做错了什么?