富⽂本和html标签的相互转换function HTMLEncode(html) {
var temp = ateElement("div");
(Content != null) ? (Content = html) : (temp.innerText = html);
var output = temp.innerHTML;
temp = null;
return output;
}html富文本框
var tagText = "<p><b>123&456</b></p>";
console.log(HTMLEncode(tagText));
function HTMLDecode(text) {
var temp = ateElement("div");
temp.innerHTML = text;
var output = temp.innerText || Content;
temp = null;
return output;
}
var tagText = "<p><b>123&456</b></p>";
var encodeText = HTMLEncode(tagText);
console.log(encodeText);//<p><b>123&456</b></p>
console.log(HTMLDecode(encodeText));

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。