Javascript:如何引用通过发布打开的子窗口

发布于 2024-12-12 04:13:27 字数 375 浏览 0 评论 0原文

我想引用我打开的子窗口,以便我可以从父窗口调用它的一些方法。为此,我需要保留对窗口的引用。我找到的所有示例都保留引用:

var windowRef = window.open(...);

但我不使用 window.open。我提交表单是因为我需要向其中发布数据:

var frmMain = document.forms['frmMain'];
frmMain.action = "http://www.somedomain.com";
link.attr("href");
frmMain.target = "_blank";
frmMain.submit();

如何使用帖子引用打开的窗口?谢谢!

I want to reference the child window that I have opened so that I can call some method on it from the parent. To do that I need to keep a reference to the window. All the examples I have found keep the reference by:

var windowRef = window.open(...);

But I don't use window.open. I submit the form because I need to post data to it:

var frmMain = document.forms['frmMain'];
frmMain.action = "http://www.somedomain.com";
link.attr("href");
frmMain.target = "_blank";
frmMain.submit();

How can I reference the open window using a post? Thanks!

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

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

发布评论

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

评论(1

若有似无的小暗淡 2024-12-19 04:13:27

只要您的 target 属性设置为真实名称,窗口对象的 open 方法实际上可以为您创建引用。

var frmMain = document.forms['frmMain'];
frmMain.action = "http://www.somedomain.com";
link.attr("href");
frmMain.target = "myawsmwindow";
frmMain.submit();

var myawsmwindow = window.open("", "myawsmwindow"); // gets you a variable ref to the named window.

编辑:这是一个演示 jsfiddle

The open method of the window object can actually create the reference for you as long as your target attribute is set to a real name.

var frmMain = document.forms['frmMain'];
frmMain.action = "http://www.somedomain.com";
link.attr("href");
frmMain.target = "myawsmwindow";
frmMain.submit();

var myawsmwindow = window.open("", "myawsmwindow"); // gets you a variable ref to the named window.

edit: Here is a demonstration jsfiddle.

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