码迷,mamicode.com
首页 > Web开发 > 详细

html的转码玉反转码

时间:2015-07-30 16:24:33      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

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;   

}  

jQuery实现

 

function HTMLEncode(html)   

{   

return $(‘<div>‘).text(html).html()

 

}  

 function HTMLDecode(text)   

{   

return $(‘<div>‘).html(text).text()

}  

 

html的转码玉反转码

标签:

原文地址:http://www.cnblogs.com/blowfish/p/4689374.html

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