WEB开发网
开发学院网页设计JavaScript Javascript URL 转义字符 阅读

Javascript URL 转义字符

 2009-01-15 20:03:51 来源:WEB开发网   
核心提示:我另外添加了附注,1、encodeURIComponent(”[string]“)decodeURIComponent(”[encodedString]“)2、encodeURI(”[string]“)decodeURI(”[encodedString]“)3、escape(”[string]“)unescape(”[

我另外添加了附注。

1、
  encodeURIComponent(”[string]“)
  decodeURIComponent(”[encodedString]“)

2、
  encodeURI(”[string]“)
  decodeURI(”[encodedString]“)

3、
  escape(”[string]“)
  unescape(”[encodedString]“)

Note:
  a、The both of 1 and 2 encodes/decodes in “utf-8″
  b、The both of 1 and 2 can not encode _-~*.’
  c、The difference of 1 and 2 is 2 can not encoding /?&+=$@,;
  d、The 3 encodes/decodes in “ISO Latin”

附注:URL编码规则

1、对每个字节进行编码;
2、空格转为”+”号;
3、安全字符不编码。安全字符:大小写英文字母(a-z以及A-Z) 阿拉伯数字(0-9) \’ ( ) * - . _ !
4、其他字节以十六进制显示并加”%”前缀,例如用%25代表%号。

Tags:Javascript URL 转义

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接