1. 程式人生 > >標籤帶引數跳轉並在下一個頁面接

標籤帶引數跳轉並在下一個頁面接

<a href="home.html?id=1">跳轉</a>

//home.html

<script type="text/javascript"> var a=GetRequest();

console.log("id:"+a['id']) //打印出傳過來的id

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]] = decodeURIComponent(strs[i].split("=")[1]);        }    }    return theRequest; } </script>