使用document.createComment().
document.body.prepend(document.createComment(‘helloworld‘));
如上所示, 我们在body子元素顶部增加了一个注释节点: <!--helloworld-->
原文地址:https://www.cnblogs.com/aisowe/p/11546417.html
时间: 2024-10-01 13:05:20
使用document.createComment().
document.body.prepend(document.createComment(‘helloworld‘));
如上所示, 我们在body子元素顶部增加了一个注释节点: <!--helloworld-->
原文地址:https://www.cnblogs.com/aisowe/p/11546417.html