2016-05-15 103 views

回答

3

你可以试试这个:

$('span.button-label').remove() 

,这也可能工作:

$("span").remove(".button-label"); 

检查文档here

相关问题