document.head.outterHTML清除head内容
想要清除head的内容
document.head.outterHTML="";
即可。
相应的还有document.body.outterHTML。
DOM接口的outerHTML属性获取描述元素(包括其后代)的序列化HTML片段。它也可以设置为用从给定字符串解析的节点替换元素。
要仅获取元素内容的HTML表示形式或替换元素的内容,请使用 innerHTML 属性
通过设置outerHTML属性来替换节点:
// HTML:
/*
<div id="container">
<div id="d">This is a div.</div>
</div>
*/
let container = document.getElementById("container");
let d = document.getElementById("d");
console.log(container.firstChild.nodeName);
// logs "div"
d.outerHTML = "<p>This paragraph replaced the original div.</p>";
本文链接地址:https://const.net.cn/195.html