Facebox打开页面获取查询字符串

发布于 2024-11-16 18:30:31 字数 349 浏览 3 评论 0原文

Im in a page mainpage.aspx" in which i have this code:
<a rel="facebox" href="destination.htm?path=blabla">mainpage</a>
Im using facebox() to load the destination.htm
The problem is in my destination.htm,when im trying to hit an alert(window.location.href) im getting the mainpage.aspx and not the destination.htm.why ? all i want to do is to read the path from the page to get the querystring (but im getting the wrong path).

thanks alot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

澉约 2024-11-23 18:30:31

这是因为facebox实际上并不是将浏览器重定向到该页面,而是通过ajax获取并将其注入到同一页面上的facebox div中。

您可以尝试获取锚点的 href 属性,也许类似于:

var lastVisited = null;
var lastVisitedQS = null;
$("a[rel='facebox']").facebox()
          .click(function() {
              lastVisited = this.href;

              // you can extract the query string like this
              var a = document.createElement('a');
              a.href = lastVisited;
              lastVisitedQS = a.search; // should give path=blabla
          });

然后在您的 destination.htm 中执行:

alert(lastVisited);
alert(lastVisitedQS);

希望有帮助!

That is because facebox is not actually redirecting the browser to that page, but fetching via ajax and injecting it into the facebox div on the same page.

You could try grabbing the href attribute of the anchor instead, perhaps something like:

var lastVisited = null;
var lastVisitedQS = null;
$("a[rel='facebox']").facebox()
          .click(function() {
              lastVisited = this.href;

              // you can extract the query string like this
              var a = document.createElement('a');
              a.href = lastVisited;
              lastVisitedQS = a.search; // should give path=blabla
          });

and then in your destination.htm do:

alert(lastVisited);
alert(lastVisitedQS);

Hope that helps!

海之角 2024-11-23 18:30:31

您可以使用 window.location.hostname 获取主机 URL,window.location.pathname 获取虚拟目录+页面,使用 window.location.search 获取 URL 的查询字符串部分

You can use window.location.hostname to get host URL, window.location.pathname to get virtual dir+page and window.location.search to get querystring part of URL

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文