在不同的框架中设置内容

发布于 2024-12-12 07:02:22 字数 107 浏览 3 评论 0原文

我有一个必须更新的页面,它有 3 个框架(顶栏、侧栏和主要内容。如果我单击主内容框架中的某些内容,我想更新侧栏框架中的列表。我该怎么做(我使用 jquery 或 javascript 进行按钮点击)。

I have a page I have to update, it has 3 frames (top bar, side bar and main content. If i click something in the main content frame i want to update a list in the side bar frame. how do i do this (i use jquery or javascript for button clicks).

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

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

发布评论

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

评论(2

凉世弥音 2024-12-19 07:02:22

您必须在 a 标签的目标中设置框架的名称。

<a href="example.html" target="your-frame-name">yourlink</a>

You have to set the name of your frame in the target of your a-tag.

<a href="example.html" target="your-frame-name">yourlink</a>
追我者格杀勿论 2024-12-19 07:02:22

根据我对您的布局的理解,这是我的建议。您有一个窗口,其中包含三个框架。另外,您正在使用 jQuery。

当您位于一个 iframe 中并且需要与另一个 iframe 通信时,请使用 jQuery 选择器上的第二个参数将选择器的范围设置回主窗口。您可以按如下方式执行此操作:

$("iframe[name=myframe]", window.opener.document).contents().doWhatever()

如果您对所有需要来回对话的选择器执行此操作,那么您应该没问题。我以前用过这个,而且很有效。

Here is what I suggest, based on my understanding of your layout. You have one window with three frames in it. Also, you are using jQuery.

When you are in one iframe and need to talk to another iframe, use the second parameter on the jQuery selector to set the scope of your selector back to the main window. You would do that as follows:

$("iframe[name=myframe]", window.opener.document).contents().doWhatever()

If you do this on all of your selectors that need to talk back and forth, then you should be fine. I have used this before, and it works.

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