首页 > 其他 > 详细

提交表单中的特殊字符转换

时间:2014-07-10 13:03:37      阅读:324      评论:0      收藏:0      [点我收藏+]

<script type="text/javascript">
// 替换特殊字符
function HTMLEncode(text){
 text = text.replace(/&/g, "&amp;") ;
 text = text.replace(/"/g, "&quot;") ;
 text = text.replace(/</g, "&lt;") ;
 text = text.replace(/>/g, "&gt;") ;
 text = text.replace(/‘/g, "&#146;") ;
 text = text.replace(//g,"&nbsp;");
 text = text.replace(/\n/g,"<br>");
 text = text.replace(/\t/g,"&nbsp;&nbsp;&nbsp;&nbsp;");
 return text;
}
//还原特殊字符
function TEXTAREAcode(text){
 text = text.replace(/\n/g,"");
 text = text.replace(/&amp;/g, "&") ;
 text = text.replace(/&quot;/g, "\"") ;
 text = text.replace(/&lt;/g, "<") ;
 text = text.replace(/&gt;/g, ">") ;
 text = text.replace(/&#146;/g, "\‘") ;
 text = text.replace(/&nbsp;/g," ");
 text = text.replace(/<br>/g,"\n");
 return text;
}

提交表单中的特殊字符转换,布布扣,bubuko.com

提交表单中的特殊字符转换

原文:http://www.cnblogs.com/yangfeizbj/p/3811845.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!