我必须在div
中加载另一个带有查询参数的aspx页面。我正在使用以下代码
$(document).ready(function() {
var url = "ep.aspx?pg=" + getParameterByName("g");
alert(url);
$("#divQuotaGroup").load(url,{}, function(data) {
alert("loading complete");
});
});
此处,在ep.aspx
页面加载后,查询参数pg
值未定义..所以我该怎么做呢。
function getParameterByName(parameterName) {
parameterName = parameterName.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regexS = "[\\?&]" + parameterName + "=([^&#]*)";
var regex = new RegExp(regexS);
var results = regex.exec(window.location.search);
if (results == null)
return "";
else
return decodeURIComponent(results[1].replace(/\+/g, " "));
}