/** * 获取URL中指定参数的值 * * @param name 参数名称 * @returns */ function getQueryString(name) { var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i'); var r = window.location.search.substr(1).match(reg); if (r != null) { return unescape(r[2]); } r…
//Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request // eg. /manage/editExam.domethod=goExamSet&type=U String url = request.getRequestURI(); //The re…
从A跳转到B,携带参数 例如: /pc/B.jsp?item=123456 B页面在js可以直接用 var item='${param.item}'; 这样就拿到啦 还有一种方法 定义一个函数 function getQueryParam(){ var url = decodeURI(location.search); //获取url中"?"符后的字串 var theRequest =new Object(); if (url.indexOf("?") != -…
获取地址栏上的URL参数现在最简单通用的方法应该就是下面这种了. function getUrlParam (name) { var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)'); var r = window.location.search.substr(1).match(reg); if (r != null) return decodeURIComponent(r[2]); return null; } // 使用方法就…