标签:空格 str ati uri oca 导致 错误 使用 浏览器
我们在url中传递的参数带有加号+,会被浏览器转换成空格,这样导致传参错误
解决办法是使用 encodeURIComponent 方法给参数进行转码
例如:
var name = ‘a+b’;
window.location.href = "/index?name=" + encodeURIComponent(name);
标签:空格 str ati uri oca 导致 错误 使用 浏览器
原文地址:https://www.cnblogs.com/moringyaozheng/p/13186432.html