2014-05-08 93 views

回答

2
$('a').removeClass("addAnother"); 

如果你問如何刪除元素:

$('.addAnother').remove(); 
1

您需要使用.remove()

從DOM中刪除一組匹配的元素。

$('.svg_selector').remove(); 

,如果您有其他元素具有相同的類和僅定位錨:

$('a.svg_selector').remove(); 
2
$('.addAnother').each(function(){ 
    this.remove(); 
});