当前位置: 首页 > 工具软件 > getUrlParam > 使用案例 >

jsp、html页面通过 getUrlParam()来接收参数

葛念
2023-12-01
function getUrlParam(k) {
	var regExp = new RegExp('([?]|&)' + k + '=([^&]*)(&|$)');
	var result = window.location.href.match(regExp);
	if (result) {
		return decodeURIComponent(result[2]);
	} else {
		return null;
	}
}
具体用法如下:

var officeid = getUrlParam("officeid");

alert(officeid);

 

 类似资料: