easyui-datagrid行数据field原样输出html标签

[摘要:easyui-datagrid 绑定的止 field 本样输出html标签。处置惩罚后果如图: Html页里代码以下:...<tr> <th field="id" width="5" align="center">编号</th] 

easyui-datagrid 绑定的行 field 原样输出html标签。处理效果如图:

Html页面代码如下:

[html] view plain copy
 
  1. ...  
  2. <tr>  
  3.         <th field="id" width="5" align="center">编号</th>  
  4.         <th field="name" width="20" align="center" data-options="formatter:formatEncodeHtml">名称</th>  
  5. ...  

处理的js代码如下:

[javascript] view plain copy
 
  1. function formatEncodeHtml(value, row, index) {  
  2.     return encodeHtml(value);  
  3. }  
  4. this.REGX_HTML_ENCODE = /"|&|'|<|>|[x00-x20]|[x7F-xFF]|[u0100-u2700]/g;  
  5. function encodeHtml(s) {  
  6.     return (typeof s != "string") ? s :  
  7.             s.replace(this.REGX_HTML_ENCODE,  
  8.                     function ($0) {  
  9.                         var c = $0.charCodeAt(0), r = ["&#"];  
  10.                         c = (c == 0x20) ? 0xA0 : c;  
  11.                         r.push(c);  
  12.                         r.push(";");  
  13.                         return r.join("");  
  14.                     });  
  15. }  
原文地址:https://www.cnblogs.com/soundcode/p/7883743.html