这些URI方法encodeURI、encodeURIComponent()、decodeURI()、decodeURIComponent()代替了BOM的escape()和unescape()方法。

URI方法更可取,因为它们对所有Unicode符号编码,而BOM方法只能对ASCII符号正确编码。尽量避免使用escape()和unescape()方法。

                                                    ---摘自 javascript advanced book.

js对文字进行编码涉及3个函数:escape、encodeURI、encodeURIComponent,相应3个解码函数:unescape、decodeURI、decodeURIComponent

1、   传递参数时需要使用encodeURIComponent,这样组合的url才不会被#等特殊字符截断。

例如:<script language="javascript">document.write('<a href="http://passport.baidu.com/?logout&aid=7&u='+encodeURIComponent ("http://cang.baidu.com/bruce42")+'">退出</a>');</script>

2、   进行url跳转时可以整体使用encodeURI

例如:Location.href=encodeURI(http://cang.baidu.com/do/s?word=百度&ct=21);

3、   js使用数据时可以使用escape

  例如:收藏中history纪录。

4、   escape对0-255以外的unicode值进行编码时输出%u****格式,其它情况下escape,encodeURI,encodeURIComponent编码结果相同。

最多使用的应为encodeURIComponent,它是将中文、韩文等特殊字符转换成utf-8格式的url编码,所以如果给后台传递参数需要使用encodeURIComponent时需要后台解码对utf-8支持(form中的编码方式和当前页面编码方式相同)

escape不编码字符有69个:*,+,-,.,/,@,_,0-9,a-z,A-Z

encodeURI不编码字符有82个:!,#,$,&,',(,),*,+,,,-,.,/,:,;,=,?,@,_,~,0-9,a-z,A-Z

encodeURIComponent不编码字符有71个:!, ',(,),*,-,.,_,~,0-9,a-z,A-Z

========================================================

unescape 方法

从用 escape 方法编码的 String 对象中返回已解码的字符串。

function unescape(charString : String) : String

参数

charString

必选。要解码的 String 对象或文本。

备注

unescape 方法返回一个包含 charstring 内容的字符串值。所有以 %xx 十六进制形式编码的字符都用 ASCII 字符集当中等效的字符代替。以 %uxxxx 格式(Unicode 字符)编码的字符用十六进制编码 xxxx 的 Unicode 字符代替。注意 unescape 方法不应用于解码“统一资源标识符”(URI)。请改用 decodeURI 和 decodeURIComponent 方法。

decodeURI 方法

返回一个已编码的统一资源标识符 (URI) 的非编码形式。

function decodeURI(URIstring : String) : String

参数

URIstring

必选。表示编码 URI 的字符串。

备注

使用 decodeURI 方法代替已经过时的 unescape 方法。

decodeURI 方法返回一个字符串值。

如果 URIString 无效,将发生 URIError。

decodeURIComponent 方法

返回统一资源标识符 (URI) 的一个已编码组件的非编码形式。

function decodeURIComponent(encodedURIString : String) : String

必选的 encodedURIString 参数是一个表示已编码的 URI 组件的值。

备注:

URIComponent 是一个完整的 URI 的一部分

// 获取查询字符串参数
function getQueryStringArgs(){
    var qS = window.location.search.length>0?location.search.substring(1):"",
    args = {},
    items = qS.split("&"),
    len = items.length,
    name = null,
    value = null,
    item = null;
    if(qS.length == 0) {
        return args;
    };
    for(var i=0;i < len;i++){
        item = items[i].split("=");
        name = decodeURIComponent(item[0]);
        value = decodeURIComponent(item[1]);
        args[name] = value;
    }
    return args;
}

//查询字符串参数
function getURIArgs(args)
{
    var s="";
    window.location.search.length && getQueryStringArgs()[args] ? s = getQueryStringArgs()[args] : s = "";
    return s;
}

最新文章

  1. Normalize.css的使用及下载
  2. UICollectionView瀑布流的实现原理(转)
  3. NHibernate初探(1)
  4. PyQt多窗口调用
  5. java常量池
  6. LInux下socket编程学习笔记
  7. Context
  8. [LeetCode] Largest Rectangle in Histogram 解题思路
  9. 自学Android的第一个小程序(小布局、button点击事件、toast弹出)
  10. Hadoop--初识Hadoop
  11. jquery取出所有包含class=&#39;engineer_val&#39;的值
  12. Android-DataBinding入门1
  13. linux下磁盘存储空间不足
  14. jetty服务器原理与maven集成
  15. python之psutil模块详解(Linux)--小白博客
  16. JAVA学习笔记系列1-Java版本介绍
  17. Duplicate entry * for key *
  18. javascript 原生常用api 数组方法大全
  19. 【转】PHP中file_put_contents追加和换行
  20. Caffe+Windows 环境搭建收集

热门文章

  1. 开源代码:Http请求封装类库HttpLib介绍、使用说明
  2. [转]看懂UML类图
  3. SQL SERVER 2000 迁移后SQL SERVER代理服务启动错误分析
  4. Windows下配置Squid反向代理服务器
  5. Red Hat Enterprise Linux Server 6.5安装GCC 4.9.2
  6. php函数 ceil floor round和 intval
  7. Linux 使用iostat分析IO性能
  8. 【java开发】封装与继承
  9. 如何读取Access里的OLE类型的图片
  10. BI报表系统在银行业的应用