encodeURI和encodeURIComponent() 的区别
先看一下他们的定义:
encodeURI():
encodeURI的目的是给URI进行编码。ASCII的字母、数字不编码,- _ . ! ~ * ' ( )也不编码,URI中具有特殊意义的字符也不编码; ; / ? : @ & = + $ , # 空格
参数中的其他字符将转换成UTF-8编码方式的字符,并使用十六进制转义序列(%xx)生成替换。其中,ASCII字符使用一个%xx替换,在\u0080与\u07ff之间的编码的字符使用两个%xx替换,其它的16为Unicode字符使用三个%xx替换。
encodeURIComponent():
encodeURIComponent是全局函数。encodeURIComponent的目的是给URI进行编码。与encodeURI函数的不同encodeURIComponent会对URI中具有特殊意义的字符也进行编码; ; / ? : @ & = + $ , # 空格,其它的与encodeURI相同。
个人理解是:
如果我们的URI 含有汉字等字符,则用encodeURI()
如果URL中的参数包含有; ; / ? : @ & = + $ , #等特殊字符,则用encodeURIComponent(),将其编码.