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> 

 

posted @ 2014-11-14 14:45  hg一如既往  阅读(3671)  评论(0编辑  收藏  举报