中文部分采用encodeURIComponent() 方法进行编码
编码代码:
encodeUrlParameter = encodeURIComponent(urlParameter);
如需解码,采用decodeURIComponent()方法进行解码
urlParameter = decodeURIComponent(encodeUrlParameter);
2023-09-28 12:01:52
中文部分采用encodeURIComponent() 方法进行编码
编码代码:
encodeUrlParameter = encodeURIComponent(urlParameter);
如需解码,采用decodeURIComponent()方法进行解码
urlParameter = decodeURIComponent(encodeUrlParameter);