参考:url的三个js编码函数escape(),encodeURI(),encodeURIComponent()简介
使用encodeURI()对url进行编码,用decodeURI()解码。
test
解码前:
alert(window.location.href);
解码后:
alert(decodeURI(window.location.href));
参考:url的三个js编码函数escape(),encodeURI(),encodeURIComponent()简介
使用encodeURI()对url进行编码,用decodeURI()解码。
解码前:
alert(window.location.href);
解码后:
alert(decodeURI(window.location.href));