我對remove方法有些困惑。混淆了jQuery .remove()方法
var articleItems;
articleItems = $('.article-item');
var firstArticleItem = articleItems.first();
firstArticleItem.find('ul').remove();
這上面的代碼工作,而這個人是不是
var articleItems;
articleItems = $('.article-item');
var firstArticleItem = articleItems.first();
firstArticleItem.remove('ul');
我,如果你增加一個選擇,然後它會從DOM中移除想。 你能解釋爲什麼第二個解決方案是不工作的?
謝謝
@ThisGuyHasTwoThumbs您可以將param傳遞給'remove()',它是一個選擇器,用於過濾要移除的元素。請參閱https://api.jquery.com/remove/ – sorayadragon
@sorayadragon啊我看到 - 不知道:)將刪除我的評論:) – ThisGuyHasTwoThumbs