2012年9月27日星期四

♣encodeURI、encodeURIComponent、escape

♣encodeURI、encodeURIComponent、escape

<!DOCTYPE html><html lang="zh-CN"><head>    <meta charset="utf-8" />    <title></title></head><body>    <script>        var str = 'http://guang.com/faxian/居家';        console.log(encodeURIComponent(str));        console.log(encodeURI(str));        str = '#$&+,/:;=?@';        console.log(encodeURIComponent(str));        console.log(encodeURI(str));        var world = "A string with symbols / characters that have special meaning?";//具有特殊意义的符号/字符的字符串        var uri = 'http://example.com/foo?hello=' + encodeURIComponent(world);        console.log(uri);        /*            encodeURI(URIString) 参数代表一个已编码的 URI            将文本字符串编码为一个有效的统一资源标识符 (URI)            encodeURI 方法返回一个编码的 URI。如果您将编码结果传递给 decodeURI,那么将返回初始的字符串。encodeURI 方法不会对下列字符进行编码:":"、"/"、";" 和 "?"。请使用 encodeURIComponent 方法对这些字符进行编码            encodeURIComponent(encodedURIString) 参数代表一个已编码的 URI 组件            将文本字符串编码为一个统一资源标识符 (URI) 的一个有效组件            encodeURIComponent 方法返回一个已编码的 URI。如果您将编码结果传递给 decodeURIComponent,那么将返回初始的字符串。因为 encodeURIComponent 方法对所有的字符编码,请注意,如果该字符串代表一个路径,例如 /folder1/folder2/default.html,其中的斜杠也将被编码。这样一来,当该编码结果被作为请求发送到 web 服务器时将是无效的。如果字符串中包含不止一个 URI 组件,请使用 encodeURI 方法进行编码。            escape(charString) 参数是要编码的任意 String 对象或文字            对 String 对象编码以便它们能在所有计算机上可读。            escape 方法返回一个包含了 charstring 内容的字符串值( Unicode 格式)。所有空格、标点、重音符号以及其他非 ASCII 字符都用 %xx 编码代替,其中 xx 等于表示该字符的十六进制数。例如,空格返回的是 "%20" 。字符值大于 255 的以 %uxxxx 格式存储。注意 escape 方法不能够用来对统一资源标示码 (URI) 进行编码。对其编码应使用 encodeURI 和encodeURIComponent 方法。            encodeURI不编码字符有82个:!,#,$,&,',(,),*,+,,,-,.,/,:,;,=,?,@,_,~,0-9,a-z,A-Z            encodeURIComponent不编码字符有71个:!, ',(,),*,-,.,_,~,0-9,a-z,A-Z            escape不编码字符有69个:*,+,-,.,/,@,_,0-9,a-z,A-Z        */    </script>    </body></html>

TAG: