JavaScript 和 window.document 对象。如何更改文档中的值

发布于 2024-11-25 08:56:29 字数 352 浏览 0 评论 0原文

我有一个正常的页面和弹出窗口。在弹出窗口上,我正在修改 JavaScript,以便回调将更改我的页面(弹出窗口后面的页面)上的值。但我在 javascript 中很难导航回该字段。

我有以下内容:

window.document.getElementById('mynewfield').value = newValue;

但这不是找到字段,需要更改为:

window.ID-OF-MY-WINDOW-BEHIND.document.getElementById('mynewfield').value = newValue;

我怎样才能知道ID是什么? javascript 有 print_r 函数吗?

I have a normal page and popup window. On the popup window, I am modifying the javascript so the callback will change the value on my page (the page behind the popup window). But I am struggling on navigating back to that field in javascript.

I have the following:

window.document.getElementById('mynewfield').value = newValue;

But this is not finding the field and needs to be changed to:

window.ID-OF-MY-WINDOW-BEHIND.document.getElementById('mynewfield').value = newValue;

How can I find out what the ID is? Is there a print_r funciton for javascript?

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

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

发布评论

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

评论(1

指尖上的星空 2024-12-02 08:56:29

我认为您正在寻找的是:

window.opener

您可以按如下方式使用它:

window.opener.document.getElementById('mynewfield').value = newValue;

I think what you're looking for is:

window.opener

You can use this as follows:

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