我正在尝试使用以下代码在div内加载页面。
$("#ReportDiv").load("../pages/Report.html", function (response, status, xhr) {
if (status == "error") {
$("#ReportDiv").html("Unable to load the page");
}
});
这是简单的加载功能,非常适合普通网址。在这种情况下,我尝试将querystring传递给具有以下url的页面。
"../pages/Report.html?SomeParam=true",
这也很好。但是我无法在Report.html
页中读取此值。显然,“ window.location”不会提供此查询字符串。除此之外,我不知道我还能尝试什么其他方式。