encodeURI 和 encodeURIComponent 区

2022-06-30  本文已影响0人  ikonan

encodeURI()和encodeURIComponent()都是Javascript中对URL编码的函数。

测试

encodeURI("http://www.w3school.com.cn")  //  http://www.w3school.com.cn
encodeURIComponent("http://www.w3school.com.cn") // http%3A%2F%2Fwww.w3school.com.cn

总结

所以我一般进行设置时候,会在http路径采用encodeURI进行编码,但是在路径中携带的参数采用encodeURIComponent进行编码

上一篇 下一篇

猜你喜欢

热点阅读