我有動態UL李節點,使樹,我想刪除它有刪除所有子節點與specfic類
class="highlight" or
class="add_action" or
class="delete_action" or
class="edit_action"
下與specfic ID specfic裏所有子跨度節點 - (在本例中20) - 我想這代碼與jQuery找到與論文類的所有跨刪除它,但它並沒有工作
$('li#20').find('span.add_action').each(function(){
$(this).remove();
});
還累
$('li#20').eq(0).find('.add_action').remove();
$('li#20').children('.add_action').remove();
此完整示例
https://jsfiddle.net/kqagjtmr/
您尚未在該小提琴中加載jQuery。 – undefined