📜  反应 html 符号代码 - Javascript 代码示例

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

代码示例1
const strToDecode = 'Environment & Forest';
const parser = new DOMParser();
const decodedString = parser.parseFromString(`${strToDecode}`, 'text/html').body.textContent;
console.log(decodedString);