Temp DOM
2024年07月03日
一、认识
二、实现
function parserDomText(htmlStr){
const tempDiv = document.createElement('div');
tempDiv.innerHTML = htmlStr;
return tempDiv.textContent || tempDiv.innerText || "";
}
三、测试
const htmlStr =
`<div>
<h1>DOM Parser</h1>
<div>
<p>为人进出的门紧锁着</p>
<p>为够爬出的洞敞开着</p>
</div>
</div>`;
function parserDomText(htmlStr){
const tempDiv = document.createElement('div');
tempDiv.innerHTML = htmlStr;
return tempDiv.textContent || tempDiv.innerText || "";
}
const text = parserDomText(htmlStr);
console.log("text",text);