方法
/**
* 入参
* html 需要转义的字符串
* 返回
* 转义过后的字符串
*/
function decodeHtml(html) {
let txt = document.createElement('textarea');
txt.innerHTML = html;
return txt.value;
}
使用
decodeHtml('< hello world >');
// 输出 "< hello world >"
/**
* 入参
* html 需要转义的字符串
* 返回
* 转义过后的字符串
*/
function decodeHtml(html) {
let txt = document.createElement('textarea');
txt.innerHTML = html;
return txt.value;
}
decodeHtml('< hello world >');
// 输出 "< hello world >"