1. 程式人生 > >window location href 跳轉之後怎麼獲得後面帶引數

window location href 跳轉之後怎麼獲得後面帶引數

 function GetRequest() {
             var url = location.search; //獲取url中"?"符後的字串
             var theRequest = new Object();
             if (url.indexOf("?") != -1) {
                 var str = url.substr(1);
                 strs = str.split("&");
                 for(var i = 0; i < strs.length; i ++) {
                     theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
                 }
             }
             return theRequest;
         }
console.log(GetRequest().goods_id);  //輸出5

轉載的

 window.location.href = "../user/confirmation_order.html?goods_id=5" //攜帶資料