`

用URL传参带特殊字符,特殊字符丢失[总结]和中文乱码

    博客分类:
  • web
 
阅读更多

/***
  * 对 特殊字符进行重新编码
  * **/
function URLencode(sStr){
     return escape(sStr).replace(/\+/g, '%2B').replace(/\"/g,'%22').replace(/\'/g, '%27').replace(/\//g,'%2F').replace(/\#/g,'%23');
   }
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics