首页 > 代码库 > javascript; JS版HtmlEncode方法,结果与C#中HttpUtility.HtmlEncode方法一样。
javascript; JS版HtmlEncode方法,结果与C#中HttpUtility.HtmlEncode方法一样。
<script type="text/javascript"> function HTMLEncode(html) { var temp = document.createElement ("div"); (temp.textContent != null) ? (temp.textContent = html) : (temp.innerText = html); var output = temp.innerHTML; temp = null; return output; } function HTMLDecode(text) { var temp = document.createElement("div"); temp.innerHTML = text; var output = temp.innerText || temp.textContent; temp = null; return output; } var html = "<br>dffdfqqqqq"; var encodeHTML = HTMLEncode(html); alert("方法一:" +encodeHTML); var decodeHTML = HTMLDecode(encodeHTML); alert("方法一:" +decodeHTML); </script>
javascript; JS版HtmlEncode方法,结果与C#中HttpUtility.HtmlEncode方法一样。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。