为了保证参数值特殊字符被转义,应该使用encodeURIComponent编码URL参数值
var myOtherUrl = "http://example.com/index.html?url=" + encodeURIComponent(myUrl);
为了保证参数值特殊字符被转义,应该使用encodeURIComponent编码URL参数值
var myOtherUrl = "http://example.com/index.html?url=" + encodeURIComponent(myUrl);
评论