如何从使用 jQuery 创建的弹出窗口重定向创建弹出窗口的页面?

发布于 2024-12-14 12:39:44 字数 151 浏览 1 评论 0原文

我是 jQuery 新手。我的网络应用程序的主页上有一个按钮,用于创建登录弹出窗口。如果用户输入正确的密码,则弹出窗口应该消失,并且创建该弹出窗口的页面应该转到该用户的欢迎页面。我知道如果用户输入正确的密码如何消失弹出窗口。我如何告诉创建该弹出窗口的资源管理器窗口转到欢迎页面?提前致谢。

I am new to jQuery. I have a button on main page of my web application which creates a login pop. If user enters correct password then popup should be disappeared and the page which create that popup should go to welcome page of that user. I know how to disappear the popup if user enters correct password. How can I tell the explorer window which created that popup to go to the welcome page? Thanks in advance.

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

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

发布评论

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

评论(2

岁月如刀 2024-12-21 12:39:44

我相信使用 Javascript,您可以使用以下方法重定向父窗口:

window.opener.location.href = <your url>;

然后只需关闭弹出窗口:

window.close();

I believe with Javascript you can redirect the parent window with:

window.opener.location.href = <your url>;

And then simply close your popup:

window.close();
-残月青衣踏尘吟 2024-12-21 12:39:44

为此,您不需要 jQuery。一些简单的 JavaScript 就可以解决问题。

//reload the parent window
//window.opener.location.reload();

//to change the parent window location
window.opener.location.href = "welcome.htm";    

//close the current window
self.close();

You don't need jQuery for this. Some simple JavaScript should do the trick.

//reload the parent window
//window.opener.location.reload();

//to change the parent window location
window.opener.location.href = "welcome.htm";    

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