获取浏览器从模态化内容重定向窗口
我在模态化窗口中有内容,当用户点击链接时,我希望整个浏览器都重定向,而不仅仅是模式窗口。 不幸的是,这不起作用。
代码我目前有:
<a onclick="window.location.href = 'http://insert/url/here'">morestuff!</a>
这只会在模态窗口中加载网址。 我能做些什么来获得整个窗口来加载所述网址?
像这样的东西应该工作:
<a onclick="window.parent.location.href='http://insert/url/here'">morestuff!</a>
当你说“模态化” - 你的意思是一个jQuery对话框/ IFrame窗口或一个物理上不同的浏览器窗口。
如果是第一种情况,那么你需要引用外部父代:
window.parent.location.href =“http:// www ...”;
如果是第二个,那么你需要参考开瓶器:
window.opener.location.href =“http:// www ...”;
链接地址: http://www.djcxy.com/p/42199.html上一篇: Get browser to redirect window from modalized content
下一篇: Populate one dropdown based on selection in another then redirect