標籤帶引數跳轉並在下一個頁面接
阿新 • • 發佈:2018-12-19
<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>