Javascript怎样进行HTML转义

鸡啄米  •  扫码分享
我是创始人李岩:很抱歉!给自己产品做个广告,点击进来看看。  
JavaScript代码
  1. $package("js.lang"); // 没有包管理时,也可简单写成 js = {lang:{}};  
  2.   
  3. js.lang.String = function(){    
  4.     this.REGX_HTML_ENCODE = /"|&|'|<|>|[\x00-\x20]|[\x7F-\xFF]|[\u0100-\u2700]/g;  
  5.     this.REGX_HTML_DECODE = /&\w+;|&#(\d+);/g;  
  6.     this.REGX_TRIM = /(^\s*)|(\s*$)/g;  
  7.     this.HTML_DECODE = { 
  8.         "<" : "<",  
  9.         ">" : ">",  
  10.         "&" : "&",  
  11.         " ": " ",  
  12.         """: "\"",   
  13.         "©"""  
  14.   
  15.         // Add more  
  16.     };  
  17.   
  18.     this.encodeHtml = function(s){  
  19.         s = (s != undefined) ? s : this.toString();  
  20.         return (typeof s != "string") ? s :  
  21.             s.replace(this.REGX_HTML_ENCODE,   
  22.                       function($0){  
  23.                           var c = $0.charCodeAt(0), r = ["&#"];  
  24.                           c = (c == 0x20) ? 0xA0 : c;  
  25.                           r.push(c); r.push(";");  
  26.                           return r.join("");  
  27.                       });  
  28.     };  
  29.   
  30.     this.decodeHtml = function(s){  
  31.         var HTML_DECODE = this.HTML_DECODE;  
  32.   
  33.         s = (s != undefined) ? s : this.toString();  
  34.         return (typeof s != "string") ? s :  
  35.             s.replace(this.REGX_HTML_DECODE,  
  36.                       function($0, $1){  
  37.                           var c = HTML_DECODE[$0];  
  38.                           if(c == undefined){  
  39.                               // Maybe is Entity Number  
  40.                               if(!isNaN($1)){  
  41.                                   c = String.fromCharCode(($1 == 160) ? 32:$1);  
  42.                               }else{  
  43.                                   c = $0;  
  44.                               }  
  45.                           }  
  46.                           return c;  
  47.                       });  
  48.     };  
  49.   
  50.     this.trim = function(s){  
  51.         s = (s != undefined) ? s : this.toString();  
  52.         return (typeof s != "string") ? s :  
  53.             s.replace(this.REGX_TRIM, "");  
  54.     };  
  55.   
  56.   
  57.     this.hashCode = function(){  
  58.         var hash = this.__hash__, _char;  
  59.         if(hash == undefined || hash == 0){  
  60.             hash = 0;  
  61.             for (var i = 0, len=this.length; i < len; i++) {  
  62.                 _char = this.charCodeAt(i);  
  63.                 hash = 31*hash + _char;  
  64.                 hash = hash & hash; // Convert to 32bit integer  
  65.             }  
  66.             hash = hash & 0x7fffffff;  
  67.         }  
  68.         this.__hash__ = hash;  
  69.   
  70.         return this.__hash__;   
  71.     };  
  72.   
  73. };  
  74.   
  75. js.lang.String.call(js.lang.String);  

随意打赏

提交建议
微信扫一扫,分享给好友吧。