码迷,mamicode.com
首页 > 编程语言 > 详细

javascript; JS版HtmlEncode方法,结果与C#中HttpUtility.HtmlEncode方法一样。

时间:2016-06-25 14:53:42      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

<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方法一样。

标签:

原文地址:http://www.cnblogs.com/houweibin/p/5616251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!