阅读量:0
在进行location.href跳转时,如果需要传递中文或其他特殊字符,可以使用encodeURIComponent()函数进行编码,以确保跳转过程中不出现乱码或错误。例如:
var param1 = '中文'; var param2 = '特殊字符@#'; var url = 'http://example.com/page?param1=' + encodeURIComponent(param1) + '¶m2=' + encodeURIComponent(param2); window.location.href = url;
在跳转页面接收参数时,可以使用decodeURIComponent()函数进行解码,获取原始的中文或特殊字符内容。