escape、encodeURI 和 encodeURIComponent 的区别


Posted in Javascript onMarch 02, 2009

escape() 方法

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."

鄙人译:escape方法以Unicode格式返回一个包含传入参数内容的string类型的值。 Escape方法会将传入参数中所有的空格、标点符号、重音字符以及其它任何非ASCII字符替换为%xx的编码形式,其中xx与其所表示的字符的16进制数表示形式相同。如空格字符的16进制表示形式为0x20,则此时xx应为20,即escape(‘ ') 返回“%20”。

Mozilla Developer 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.

鄙人译:escape和unescape方法能够帮助你编码和解码字符串。escape方法对于ISO Latin字符集中的字符组成的参数,返回其16进制编码。相对应的,unescape方法则能将16进制编码形式的参数转化成为其ASCII码形式。

encodeURI()方法

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.

鄙人译:encodeURI方法返回一个经过编码的URI。如果将encodeURI方法的编码结果传递给decodeURI方法作参数,则能得到原始的未编码的字符串。需要注意到是encodeURI方法不编码如下字符":", "/", ";", and "?"。如果想要编码这些字符,请使用encodeURIComponent方法。

Mozilla Developer 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.

鄙人译:通过将每个属于特定的字符集合的字符替换为一个、两个或者三个(为什么是“一个、两个或者三个”本人也没有搞懂,望高人赐教)使用UTF-8编码来表示这个字符的escape序列来编码一个URI。如 ~!@#$%^&*(){}[]=:/,;?+\'"\\ 将被替换为 ~!@#$%25%5E&*()%7B%7D%5B%5D=:/,;?+'%22%5C

encodeURIComponent()方法

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.

鄙人译:encodeURIComponent方法返回一个编码过的URI。如果将encodeURIComponent方法的编码结果传递给encodeURIComponent方法作参数,则能得到原始的未编码的字符串。因为encodeURIComponent方法会编码所有的字符,所以如果待编码的字符串是用来表示一个路径(如/dir1/dir2/index.htm)时,就一定要小心使用了。‘/'符号会被其编码之后,将不再是一个有效的路径标识符,所以不能被web服务器正确地识别。当字符串包含一个单独的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编码来表示这个字符的escape序列来编码一个URIComponent。

有什么区别?何时使用?

通过上面的介绍可以看出,MS的文档明显要比Mozilla详细、易懂一些,但是它们表达的都是一个意思。但是escape(), encodeURI()和 encodeURIComponent()有什么异同,它们分别适用于那种特定的情况呢?

escape方法并不编码字符+。而我们知道,在用户提交的表单字段中,如果有空格,则会被转化为+字符,而服务器解析的时候则会认为+号代表空格。由于这个缺陷,escape方法并不能正确地处理所有的非ASCII字符,你应当尽量避免使用escape方法,取而代之,你最好选择encodeURIComponent()方法。

escape()不编码的字符:@*/+

相对于使用escape方法,使用encodeURI方法会显得更专业一些。当你需要编码一整个URI的时候,你可以使用此方法,因为URI中的合法字符都不会被编码转换。需要注意到是字符'也是URI中的合法字符,所以也不会被编码转换。

encodeURI() 不编码的字符: ~!@#@{content}*()=:/,;?+'

encodeURIComponent方法在编码单个URIComponent(指请求参数)应当是最常用的。需要注意到是字符'也是URI中的合法字符,所以也不会被编码转换。

encodeURIComponent()不编码的字符: ~!*()'

Javascript 相关文章推荐
用javascript获得地址栏参数的两种方法
Nov 08 Javascript
基于jquery实现后台左侧菜单点击上下滑动显示
Apr 11 Javascript
jquery购物车实时结算特效实现思路
Sep 23 Javascript
js获得网页背景色和字体色的方法
Mar 21 Javascript
javascript实现回车键提交表单方法总结
Jan 10 Javascript
JavaScript用二分法查找数据的实例代码
Jun 17 Javascript
Vuejs 2.0 子组件访问/调用父组件的方法(示例代码)
Feb 08 Javascript
JQuery Ajax跨域调用和非跨域调用问题实例分析
Apr 16 jQuery
浅谈TypeScript的类型保护机制
Feb 23 Javascript
js实现带有动画的返回顶部
Aug 09 Javascript
Vue中ref和$refs的介绍以及使用方法示例
Jan 11 Vue.js
JavaScript如何利用Promise控制并发请求个数
May 14 Javascript
javascript 文档的编码问题解决
Mar 01 #Javascript
jQuery Div中加载其他页面的实现代码
Feb 27 #Javascript
jQuery 使用个人心得
Feb 26 #Javascript
javascript div 弹出可拖动窗口
Feb 26 #Javascript
javascript URL锚点取值方法
Feb 25 #Javascript
javascript 特殊字符串
Feb 25 #Javascript
javascript 密码强弱度检测万能插件
Feb 25 #Javascript
You might like
PHP上传图片类显示缩略图功能
2016/06/30 PHP
支付宝服务窗API接口开发php版本
2016/07/20 PHP
php框架知识点的整理和补充
2021/03/01 PHP
JavaScript高级程序设计 学习笔记 js高级技巧
2011/09/20 Javascript
jquery ajax 简单范例(界面+后台)
2013/11/19 Javascript
JQuery中$.ajax()方法参数详解及应用
2013/12/12 Javascript
nodejs 实现模拟form表单上传文件
2014/07/14 NodeJs
鼠标悬浮停留三秒后自动显示大图js代码
2014/09/09 Javascript
javascript的日期对象、数组对象、二维数组使用说明
2014/12/22 Javascript
基于HTML+CSS+JS实现增加删除修改tab导航特效代码
2016/08/05 Javascript
ComboBox(下拉列表框)通过url加载调用远程数据的方法
2017/08/06 Javascript
vuex 使用文档小结篇
2018/01/11 Javascript
详解ES6系列之私有变量的实现
2018/11/21 Javascript
JavaScript常见继承模式实例小结
2019/01/11 Javascript
了解JavaScript函数中的默认参数
2019/05/30 Javascript
vue回到顶部监听滚动事件详解
2019/08/02 Javascript
微信小程序pinker组件使用实现自动相减日期
2020/05/07 Javascript
Pycharm在创建py文件时,自动添加文件头注释的实例
2018/05/07 Python
Python加载带有注释的Json文件实例
2018/05/23 Python
python dataframe向下向上填充,fillna和ffill的方法
2018/11/28 Python
使用python实现对元素的长截图功能
2019/11/14 Python
将python依赖包打包成window下可执行文件bat方式
2019/12/26 Python
Pytorch对Himmelblau函数的优化详解
2020/02/29 Python
python 贪心算法的实现
2020/09/18 Python
详解python爬取弹幕与数据分析
2020/11/14 Python
老师推荐信
2013/10/28 职场文书
国家励志奖学金获奖感言
2014/01/09 职场文书
行政人事经理职位说明书
2014/03/05 职场文书
奠基仪式主持词
2014/03/20 职场文书
无犯罪记录证明范本
2014/09/15 职场文书
党的群众路线教育实践活动制度建设计划
2014/11/03 职场文书
2015高中教师个人工作总结
2015/07/21 职场文书
学生会任命书范本
2015/09/21 职场文书
大学班干部竞选稿
2015/11/20 职场文书
使用Nginx+Tomcat实现负载均衡的全过程
2022/05/30 Servers
Windows Server 修改远程桌面端口的实现
2022/06/25 Servers