与单独的框架交互

发布于 2024-10-05 09:58:33 字数 141 浏览 5 评论 0原文

我正在设置一个 HTML 页面,其框架集有 2 个框架。我想在一个框架上启动一个操作,该操作会修改另一框架中的某些内容。例如,单击第 1 帧上的按钮将更改第 2 帧上具有 id 的元素的 innerHTML。

我将如何执行此操作?

谢谢

I am setting up an HTML page with a frameset that has 2 frames. I would like to initiate an action on one frame which would modify something in the other frame. For example, clicking a button on frame 1 would change the innerHTML of an element with an id on frame 2.

How would I go about doing this?

Thanks

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

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

发布评论

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

评论(1

紫瑟鸿黎 2024-10-12 09:58:33

您可以在第 1 帧中发生某些事件时触发以下 JavaScript:

window.parent.frame2.document.getElementById('element_id').innerHTML = 'new content';

假设第 2 帧元素的名称为“frame2”,并且您要修改的元素的 id 为“element_id”。

You can trigger the following javascript upon some event in frame 1:

window.parent.frame2.document.getElementById('element_id').innerHTML = 'new content';

Assuming frame 2 element has a name of "frame2" and the element you want to modify has an id of "element_id".

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