欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

javascript对HTML字符转义与反转义

时间:2021-10-13 09:10:29|栏目:JavaScript代码|点击:

1.背景:在项目中,经常遇到一些字符需要进行转义后才能显示到界面上,如“&”,在界面中显示的是“&”,在html中书写“&”,显示在界面的中的依然是“&”。

这时候,就需要进行转义

 

2.解决方案

<script>

var HtmlUtil = {

 /*1.用浏览器内部转换器实现html转码*/

 htmlEncode:function (html){

 //1.首先动态创建一个容器标签元素,如DIV

 var temp = document.createElement ("div");

 //2.然后将要转换的字符串设置为这个元素的innerText(ie支持)或者textContent(火狐,google支持)

 (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(ie支持)或者textContent(火狐,google支持),即得到经过HTML解码的字符串了。

 var output = temp.innerText || temp.textContent;

 temp = null;

 return output;

 },

 /*3.用正则表达式实现html转码*/

 htmlEncodeByRegExp:function (str){ 

 var s = "";

 if(str.length == 0) return "";

 s = str.replace(/&/g,"&amp;");

 s = s.replace(/</g,"&lt;");

 s = s.replace(/>/g,"&gt;");

 s = s.replace(/ /g,"&nbsp;");

 s = s.replace(/\'/g,"'");

 s = s.replace(/\"/g,""");

 return s; 

 },

 /*4.用正则表达式实现html解码*/

 htmlDecodeByRegExp:function (str){ 

 var s = "";

 if(str.length == 0) return "";

 s = str.replace(/&amp;/g,"&");

 s = s.replace(/&lt;/g,"<");

 s = s.replace(/&gt;/g,">");

 s = s.replace(/&nbsp;/g," ");

 s = s.replace(/'/g,"\'");

 s = s.replace(/"/g,"\"");

 return s; 

 }

 };

</script> 

使用方法:HtmlUtil.htmlDecodeByRegExp("&amp;")

PS:使用正则

使用正则转码:

var value = document.getElementById('input').value.trim();
 //对用户输入进行转义
 value = value.replace(/&/g,"&amp;");
 value = value.replace(/</g,"&lt;");
 value = value.replace(/>/g,"&gt;");
 value = value.replace(/ /g,"&nbsp;");
 value = value.replace(/"/g,'&quot;');

使用正则解码:

var value = e.target.innerText;
 // value = decodeURIComponent(value);
 value = value.replace(/&amp;/g,"&");
 value = value.replace(/&lt;/g,"<");
 value = value.replace(/&gt;/g,">");
 value = value.replace(/&nbsp;/g," ");
 value = value.replace(/&quot/g,"'");

下面是其他网友的补充

在编写html时,经常需要转义,才能正常显示在页面上。

并且,还可以防止xss。

解决方案:

一, 使用正则:

使用正则转码:

var value = document.getElementById('input').value.trim();
 //对用户输入进行转义
 value = value.replace(/&/g,"&amp;");
 value = value.replace(/</g,"&lt;");
 value = value.replace(/>/g,"&gt;");
 value = value.replace(/ /g,"&nbsp;");
 value = value.replace(/"/g,'&quot;');

使用正则解码:

var value = e.target.innerText;
// value = decodeURIComponent(value);
 value = value.replace(/&amp;/g,"&");
 value = value.replace(/&lt;/g,"<");
 value = value.replace(/&gt;/g,">");
 value = value.replace(/&nbsp;/g," ");
 value = value.replace(/&quot/g,"'");

由于编辑器的编码问题,其实就是

将<用&lt;替换,>替换为&gt;,空格替换为&nbsp;

上一篇:React Hooks的深入理解与使用

栏    目:JavaScript代码

下一篇:跨浏览器的设置innerHTML方法

本文标题:javascript对HTML字符转义与反转义

本文地址:http://www.codeinn.net/misctech/179803.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有