码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-07-10 13:04:38      阅读:386      评论:0      收藏:0      [点我收藏+]

标签:java   cti   io   html   javascript   htm   

<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

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

标签:java   cti   io   html   javascript   htm   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!