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 继承详解(三)
Jul 13 Javascript
实现JavaScript中继承的三种方式
Oct 16 Javascript
javascript 拖放效果实现代码
Jan 22 Javascript
在javascript将NodeList作为Array数组处理的方法
Jul 09 Javascript
Js数组的操作push,pop,shift,unshift等方法详细介绍
Dec 28 Javascript
JS实现table表格数据排序功能(可支持动态数据+分页效果)
May 26 Javascript
Javascript 实现微信分享(QQ、朋友圈、分享给朋友)
Oct 21 Javascript
React中使用collections时key的重要性详解
Aug 07 Javascript
微信小程序实现获取自己所处位置的经纬度坐标功能示例
Nov 30 Javascript
vue 父组件中调用子组件函数的方法
Jun 06 Javascript
vue.js实现简单的计算器功能
Feb 22 Javascript
javascript实现一款好看的秒表计时器
Sep 05 Javascript
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
《Pokemon Sword·Shield》系列WEB动画《薄明之翼》第2话声优阵容公开!
2020/03/06 日漫
中英文字符串翻转函数
2008/12/09 PHP
php visitFile()遍历指定文件夹函数
2010/08/21 PHP
php与mysql建立连接并执行SQL语句的代码
2011/07/04 PHP
php的闭包(Closure)匿名函数初探
2016/02/14 PHP
php文件缓存方法总结
2016/03/16 PHP
PHP实现上传图片到数据库并显示输出的方法
2018/05/31 PHP
基于JavaScript实现继承机制之原型链(prototype chaining)的详解
2013/05/07 Javascript
js控制的遮罩层实例介绍
2013/05/29 Javascript
基于jquery插件实现常见的幻灯片效果
2013/11/01 Javascript
使用jQuery快速解决input中placeholder值在ie中无法支持的问题
2014/01/02 Javascript
jquery 取子节点及当前节点属性值
2014/07/25 Javascript
jquery的总体架构分析及实现示例详解
2014/11/08 Javascript
JS实现仿QQ面板的手风琴效果折叠菜单代码
2015/09/11 Javascript
vue,angular,avalon这三种MVVM框架优缺点
2016/04/27 Javascript
Javascript获取随机数的实现方法
2016/06/22 Javascript
mui上拉加载功能实例详解
2017/04/13 Javascript
Angular.js中下拉框实现渲染html的方法
2017/06/18 Javascript
Vue2.0用 watch 观察 prop 变化(不触发)
2017/09/08 Javascript
es6系列教程_ Map详解以及常用api介绍
2017/09/25 Javascript
JavaScript模板引擎实现原理实例详解
2018/12/14 Javascript
如何通过setTimeout理解JS运行机制详解
2019/03/23 Javascript
Python3实现将文件树中所有文件和子目录归档到tar压缩文件的方法
2015/05/22 Python
python 找出list中最大或者最小几个数的索引方法
2018/10/30 Python
Python3 Tkinter选择路径功能的实现方法
2019/06/14 Python
解决python3.x安装numpy成功但import出错的问题
2020/11/17 Python
中国电子产品外贸网站:MiniIntheBox
2017/02/06 全球购物
Harrods美国:英国最大的百货公司
2018/11/04 全球购物
定义一结构体数组表示分数,并求两个分数相加之和
2013/06/11 面试题
合作意向书格式及范文
2014/03/31 职场文书
超越自我演讲稿
2014/05/21 职场文书
创文明城市标语
2014/06/16 职场文书
2014年秋季开学典礼致辞
2014/08/02 职场文书
酒店辞职书怎么写
2015/02/26 职场文书
浅析Django接口版本控制
2021/06/26 Python
为什么MySQL 删除表数据 磁盘空间还一直被占用
2021/10/16 MySQL