encodeURIComponent 用这个方法就可以了
是在做微信分享接口的时候 遇到的~~
例子
function flightHandler0() {
url = url + "?url=" + encodeURIComponent(window.location.href) + "&callback=flightHandler";
// 创建script标签,设置其属性
var script = document.createElement(‘script‘);
script.setAttribute(‘src‘, url);
// 把script标签加入head,此时调用开始
document.getElementsByTagName(‘head‘)[0].appendChild(script);
}
要把当前地址当成参数传递时 可以先用 encodeURIComponent 处理一下~~
时间: 2024-10-11 21:07:02