与单独的框架交互
我正在设置一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在第 1 帧中发生某些事件时触发以下 JavaScript:
假设第 2 帧元素的名称为“frame2”,并且您要修改的元素的 id 为“element_id”。
You can trigger the following javascript upon some event in frame 1:
Assuming frame 2 element has a name of "frame2" and the element you want to modify has an id of "element_id".