//获取地址栏参数
function getQueryStringByName(name) {
var result = location.search.match(new RegExp("[\?\&]" + name + "=([^\&]+)", "i"));
if (result == null || result.length < 1) {
return "";
}
return result[1];
}
//调用:
id=getQueryStringByName("id");
时间: 2024-10-05 23:54:28