URL编码转换,escape() encodeURI() encodeURIComponent()


Posted in Javascript onDecember 27, 2006

escape() 方法:
采用ISO Latin字符集对指定的字符串进行编码。所有的空格符、标点符号、特殊字符以及其他非ASCII字符都将被转化成%xx格式的字符编码(xx等于该字符在字符集表里面的编码的16进制数字)。比如,空格符对应的编码是%20。unescape方法与此相反。不会被此方法编码的字符: @ * / +

英文解释:MSDN JScript Reference: The escape method returns a string value (in Unicode format) that contains the contents of [the argument]. All spaces, punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding, where xx is equivalent to the hexadecimal number representing the character. For example, a space is returned as "%20."
Edge Core Javascript Guide: The escape and unescape functions let you encode and decode strings. The escape function returns the hexadecimal encoding of an argument in the ISO Latin character set. The unescape function returns the ASCII string for the specified hexadecimal encoding value.

encodeURI() 方法:把URI字符串采用UTF-8编码格式转化成escape格式的字符串。不会被此方法编码的字符:! @ # $& * ( ) = : / ; ? + '

英文解释:MSDN JScript Reference: The encodeURI method returns an encoded URI. If you pass the result to decodeURI, the original string is returned. The encodeURI method does not encode the following characters: ":", "/", ";", and "?". Use encodeURIComponent to encode these characters. Edge Core Javascript Guide: Encodes a Uniform Resource Identifier (URI) by replacing each instance of certain characters by one, two, or three escape sequences representing the UTF-8 encoding of the character

encodeURIComponent() 方法:把URI字符串采用UTF-8编码格式转化成escape格式的字符串。与encodeURI()相比,这个方法将对更多的字符进行编码,比如 / 等字符。所以如果字符串里面包含了URI的几个部分的话,不能用这个方法来进行编码,否则 / 字符被编码之后URL将显示错误。不会被此方法编码的字符:! * ( ) 

英文解释:MSDN JScript Reference: The encodeURIComponent method returns an encoded URI. If you pass the result to decodeURIComponent, the original string is returned. Because the encodeURIComponent method encodes all characters, be careful if the string represents a path such as /folder1/folder2/default.html. The slash characters will be encoded and will not be valid if sent as a request to a web server. Use the encodeURI method if the string contains more than a single URI component. Mozilla Developer Core Javascript Guide: Encodes a Uniform Resource Identifier (URI) component by replacing each instance of certain characters by one, two, or three escape sequences representing the UTF-8 encoding of the character.

因此,对于中文字符串来说,如果不希望把字符串编码格式转化成UTF-8格式的(比如原页面和目标页面的charset是一致的时候),只需要使用escape。如果你的页面是GB2312或者其他的编码,而接受参数的页面是UTF-8编码的,就要采用encodeURI或者encodeURIComponent。
      另外,encodeURI/encodeURIComponent是在javascript1.5之后引进的,escape则在javascript1.0版本就有。

英文注释:The escape() method does not encode the + character which is interpreted as a space on the server side as well as generated by forms with spaces in their fields. Due to this shortcoming, you should avoid use of escape() whenever possible. The best alternative is usually encodeURIComponent().Use of the encodeURI() method is a bit more specialized than escape() in that it encodes for URIs [REF] as opposed to the querystring, which is part of a URL. Use this method when you need to encode a string to be used for any resource that uses URIs and needs certain characters to remain un-encoded. Note that this method does not encode the ' character, as it is a valid character within URIs.Lastly, the encodeURIComponent() method should be used in most cases when encoding a single component of a URI. This method will encode certain chars that would normally be recognized as special chars for URIs so that many components may be included. Note that this method does not encode the ' character, as it is a valid character within URIs.

Javascript 相关文章推荐
JavaScript入门教程(10) 认识其他对象
Jan 31 Javascript
JavaScript 无符号右移赋值操作
Apr 17 Javascript
写出更好的JavaScript程序之undefined篇(中)
Nov 23 Javascript
ie8本地图片上传预览示例代码
Jan 12 Javascript
分享一个自己动手写的jQuery分页插件
Aug 28 Javascript
JS实现模拟百度搜索“2012世界末日”网页地震撕裂效果代码
Oct 31 Javascript
第一次接触神奇的Bootstrap菜单和导航
Aug 01 Javascript
js动态生成form 并用ajax方式提交的实现方法
Sep 09 Javascript
Bootstrap 模态对话框只加载一次 remote 数据的完美解决办法
Jul 09 Javascript
你点的 ES6一些小技巧,请查收
Apr 25 Javascript
利用H5api实现时钟的绘制(javascript)
Sep 13 Javascript
实用的 vue tags 创建缓存导航的过程实现
Dec 03 Vue.js
escape、encodeURI、encodeURIComponent等方法的区别比较
Dec 27 #Javascript
破除网页鼠标右键被禁用的绝招大全
Dec 27 #Javascript
Windows Live的@live.com域名注册漏洞 利用代码
Dec 27 #Javascript
用javascript实现无刷新更新数据的详细步骤 asp
Dec 26 #Javascript
提高 DHTML 页面性能
Dec 25 #Javascript
js中几种去掉字串左右空格的方法
Dec 25 #Javascript
js静态作用域的功能。
Dec 25 #Javascript
You might like
在 PHP 中使用随机数的三个步骤
2006/10/09 PHP
Wordpress php 分页代码
2009/10/21 PHP
php检测网页是否被百度收录的函数代码
2013/10/09 PHP
php二维数组排序方法(array_multisort usort)
2013/12/25 PHP
ThinkPHP CURD方法之limit方法详解
2014/06/18 PHP
php获取客户端电脑屏幕参数的方法
2015/01/09 PHP
PHP strcmp()和strcasecmp()的区别实例
2016/11/05 PHP
PHP CURL实现模拟登陆并上传文件操作示例
2020/01/02 PHP
php 使用html5 XHR2实现上传文件与进度显示功能示例
2020/03/03 PHP
些很实用且必用的小脚本代码
2006/06/26 Javascript
jquery 弹出层实现代码
2009/10/30 Javascript
JQuery实现倒计时按钮的实现代码
2012/03/23 Javascript
微信公众号支付H5调用支付解析
2016/11/04 Javascript
JS限制条件补全问题实例分析
2016/12/16 Javascript
Vue from-validate 表单验证的示例代码
2017/09/26 Javascript
Vue下路由History模式打包后页面空白的解决方法
2018/06/29 Javascript
javascript异步编程的六种方式总结
2019/05/17 Javascript
[02:54]DOTA2亚洲邀请赛 VG战队出场宣传片
2015/02/07 DOTA
[00:09]DOTA2全国高校联赛 精彩活动引爆全场
2018/05/30 DOTA
python实现图片批量压缩程序
2018/07/23 Python
PyQt5实现QLineEdit添加clicked信号的方法
2019/06/25 Python
Python在Matplotlib图中显示中文字体的操作方法
2019/07/29 Python
Python实现生成密码字典的方法示例
2019/09/02 Python
Python模块_PyLibTiff读取tif文件的实例
2020/01/13 Python
印度在线内衣和时尚目的地:Zivame
2017/09/28 全球购物
鞋子女王塔玛拉·梅隆同名奢侈品牌:Tamara Mellon
2017/11/22 全球购物
Kidsroom台湾:来自德国的婴儿用品
2017/12/11 全球购物
Pretty Little Thing美国:时尚女性服饰
2018/08/27 全球购物
质检员岗位职责
2013/12/17 职场文书
3.15国际消费者权益日主题活动活动总结
2014/03/16 职场文书
幼儿园中班区域活动总结
2014/07/09 职场文书
民族学专业职业生涯规划范文:积跬步以至千里
2014/09/11 职场文书
停车位租赁协议书
2014/09/24 职场文书
村党的群众路线教育实践活动总结材料
2014/10/31 职场文书
关于拾金不昧的感谢信
2015/01/21 职场文书
离婚协议书格式
2015/01/26 职场文书