encodeURI和encodeURIComponent区别
2024-07-14 本文已影响0人
老薛有只猫
1、encodeURI方法不会对下列字符编码:
ASCII字母、数字、~!@#$&()=:/,;?+'
2、encodeURIComponent方法不会对下列字符编码:
ASCII字母、数字、~!()'
对整个URL使用encodeURI,对参数用encodeURIComponent
1、encodeURI方法不会对下列字符编码:
ASCII字母、数字、~!@#$&()=:/,;?+'
2、encodeURIComponent方法不会对下列字符编码:
ASCII字母、数字、~!()'
对整个URL使用encodeURI,对参数用encodeURIComponent