html中有特殊字符处理,用来解决从客户端检测到有潜在危险的Request.Form 值
2021-04-14 04:28
标签:一个 动态 acl ext 支持 reg encode tee put https://www.cnblogs.com/xdp-gacl/p/3722642.html html中有特殊字符处理,用来解决从客户端检测到有潜在危险的Request.Form 值 标签:一个 动态 acl ext 支持 reg encode tee put 原文地址:https://www.cnblogs.com/zhaogaojian/p/12378431.htmlvar 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,"&");
s = s.replace(/,"<");
s = s.replace(/>/g,">");
s = s.replace(/ /g," ");
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(/&/g,"&");
s = s.replace(/</g,");
s = s.replace(/>/g,">");
s = s.replace(/ /g," ");
s = s.replace(/'/g,"\‘");
s = s.replace(/"/g,"\"");
return s;
}
};
文章标题:html中有特殊字符处理,用来解决从客户端检测到有潜在危险的Request.Form 值
文章链接:http://soscw.com/index.php/essay/75509.html