escape ,unescape 不再使用了,使用encodeURIComponent吧

getUrlParam = function (name) {     var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");     var r = window.location.search.substr(1).match(reg);     if (r != null) return decodeURIComponent(r[2]);
相關文章
相關標籤/搜索