📌  相关文章
📜  div中的jquery明文 - Javascript代码示例

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

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