Facebox打开页面获取查询字符串
我在一个页面 mainpage.aspx" 中,其中有以下代码:主页
我使用facebox()来加载destination.htm
问题出在我的destination.htm中,当我尝试点击警报(window.location.href)时,我得到的是mainpage.aspx而不是destination.htm。为什么?我想做的就是从页面读取路径以获取查询字符串(但我得到了错误的路径)。
多谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为facebox实际上并不是将浏览器重定向到该页面,而是通过ajax获取并将其注入到同一页面上的facebox div中。
您可以尝试获取锚点的 href 属性,也许类似于:
然后在您的
destination.htm
中执行:希望有帮助!
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:
and then in your
destination.htm
do:Hope that helps!
您可以使用 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