获取使用jQuery加载的页面中的querystring参数

时间:2019-03-07 09:21:49

标签: javascript jquery

我正在尝试使用以下代码在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”不会提供此查询字符串。除此之外,我不知道我还能尝试什么其他方式。

0 个答案:

没有答案