美文网首页
2018-05-31 URL encodeURI encode

2018-05-31 URL encodeURI encode

作者: 忙于未来的民工 | 来源:发表于2018-06-07 18:05 被阅读0次

    escape()不能直接用于URL编码,它的真正作用是返回一个字符的Unicode编码值。比如"春节"的返回结果是%u6625%u8282,,escape()不对"+"编码 主要用于汉字编码,现在已经不提倡使用。

    encodeURI()是Javascript中真正用来对URL编码的函数。 编码整个url地址,但对特殊含义的符号"; / ? : @ & = + $ , #",也不进行编码。对应的解码函数是:decodeURI()。

    encodeURIComponent() 能编码"; / ? : @ & = + $ , #"这些特殊字符。对应的解码函数是decodeURIComponent()。

    假如要传递带&符号的网址,所以用encodeURIComponent()

    参考:https://www.haorooms.com/post/js_escape_encodeURIComponent

    相关文章

      网友评论

          本文标题:2018-05-31 URL encodeURI encode

          本文链接:https://www.haomeiwen.com/subject/wsqcsftx.html