📜  jquery empty - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:05.395000             🧑  作者: Mango

代码示例3
// removes only text, no changes to children
$('#YourDivId').contents().filter((_, el) => el.nodeType === 3).remove();