一、获取href的参数
String.prototype.GetValue = function (parm) {
var reg = new RegExp("(^|&)" + parm + "=([^&]*)(&|$)");
var r = this.substr(this.indexOf("\?") + 1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
用法:
var hr=location.href;
var abc = hr.GetValue("abc");
时间: 2024-12-13 00:21:19