hereによると、jquery の remove 関数は次のように機能するはずです。
$('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
});
うまくいきません。私は何を間違っていますか?