1.传递参数: window.location.href = "./list.html?id="+id; 1.接收参数: (1)接收参数函数封装 function GetRequest() { var url = location.search; //获取url中"?"符后的字串 var theRequest = new Object(); if (url.indexOf("?") != -1) { var str = url.substr(1)…
当我们通过url传参跳转到其他页面,如: http://www.xxx.com/content.html?id=217&name=txf&phone=15829087165 在跳转后的页面需要获取到参数,方法如下: function getUrlArgs(){//公用方法 var url_pid=window.location.search.substring(1);//浏览器地址栏产品 var pairs = url_pid.split("&")…