JS实现html转义和反转义的方法
小编给大家分享一下JS实现html转义和反转义的方法,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
创新互联是一群有想法、有热情,对互联网抱有执着信念的年轻人,愿用自己的智慧和热情,帮助您使用好互联网工具,成为您的建站英雄,成为您网站制作和网络营销的“秘密武器”,专注于网站策划、备案、空间域名、设计、后台开发、关键词优化排名、运营管理、维护服务、微信网站、移动网站建设,网站上线不是大家合作的终结,相反,网站维护才刚刚开始,我们期待常年累月的网站运行过程总着为您提供更多的支持。我们致力于解决问题,创造价值,不推诿,主动承担。
1、JS实现html转义和反转义主要有两种方式:
1)、利用用浏览器内部转换器实现html转义;
2)、用正则表达式实现html转义;
2、封装的JS工具类:
var HtmlUtil = { /*1.用浏览器内部转换器实现html编码(转义)*/ htmlEncode:function (html){ //1.首先动态创建一个容器标签元素,如DIV var temp = document.createElement ("div"); //2.然后将要转换的字符串设置为这个元素的innerText或者textContent (temp.textContent != undefined ) ? (temp.textContent = html) : (temp.innerText = html); //3.最后返回这个元素的innerHTML,即得到经过HTML编码转换的字符串了 var output = temp.innerHTML; temp = null; return output; }, /*2.用浏览器内部转换器实现html解码(反转义)*/ htmlDecode:function (text){ //1.首先动态创建一个容器标签元素,如DIV var temp = document.createElement("div"); //2.然后将要转换的字符串设置为这个元素的innerHTML(ie,火狐,google都支持) temp.innerHTML = text; //3.最后返回这个元素的innerText或者textContent,即得到经过HTML解码的字符串了。 var output = temp.innerText || temp.textContent; temp = null; return output; }, /*3.用正则表达式实现html编码(转义)*/ htmlEncodeByRegExp:function (str){ var temp = ""; if(str.length == 0) return ""; temp = str.replace(/&/g,"&"); temp = temp.replace(//g,">"); temp = temp.replace(/\s/g," "); temp = temp.replace(/\'/g,"'"); temp = temp.replace(/\"/g,"""); return temp; }, /*4.用正则表达式实现html解码(反转义)*/ htmlDecodeByRegExp:function (str){ var temp = ""; if(str.length == 0) return ""; temp = str.replace(/&/g,"&"); temp = temp.replace(/</g,"<"); temp = temp.replace(/>/g,">"); temp = temp.replace(/ /g," "); temp = temp.replace(/'/g,"\'"); temp = temp.replace(/"/g,"\""); return temp; }, /*5.用正则表达式实现html编码(转义)(另一种写法)*/ html2Escape:function(sHtml) { return sHtml.replace(/[<>&"]/g,function(c){return {'<':'<','>':'>','&':'&','"':'"'}[c];}); }, /*6.用正则表达式实现html解码(反转义)(另一种写法)*/ escape2Html:function (str) { var arrEntities={'lt':'<','gt':'>','nbsp':' ','amp':'&','quot':'"'}; return str.replace(/&(lt|gt|nbsp|amp|quot);/ig,function(all,t){return arrEntities[t];}); } };
3、测试及效果:
1)、html代码:
&&