码迷,mamicode.com
首页 > Web开发 > 详细

完美的js URLEncode函数

时间:2015-07-07 20:58:43      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

完美的js URLEncode函数

当需要通过查询字符串传值给服务器时需要对get参数进行encode。

  1. escape()函数,不会encode @*/+ (不推荐使用)
  2. encodeURI()函数,不会encode ~!@#$&*()=:/,;?+‘ (不推荐使用)
  3. encodeURIComponent()函数,不会encode~!*() 这个函数是最常用的

我们需要对encodeURIComponent函数,最一点修改:

function urlencode (str) {  
    str = (str + ‘‘).toString();   

    return encodeURIComponent(str).replace(/!/g, ‘%21‘).replace(/‘/g, ‘%27‘).replace(/\(/g, ‘%28‘).  
    replace(/\)/g, ‘%29‘).replace(/\*/g, ‘%2A‘).replace(/%20/g, ‘+‘);  
}

完美的js URLEncode函数

标签:

原文地址:http://www.cnblogs.com/leekenky/p/4628379.html

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