同步滚动两个框架(请与浏览器无关!)

发布于 2024-09-05 10:32:43 字数 739 浏览 4 评论 0原文

我有一个由三个框架组成的网页,如下所示:

+----------------+
|       0        |
+-------+--------+
|       |        |
|   1   |    2   |
|       |        |
+-------+--------+

框架 12 用于比较一些相似的数据。我想同步这些框架上的垂直滚动条(将两侧的滚动条值设置为相同)。

我当前的方法是在框架 0 中包含以下代码:

<script>
   function scroll_sync() {
      var f1 = window.parent.frames[1];
      var f2 = window.parent.frames[2];

      f1.onscroll = function () { f2.scroll(f2.scrollX, f1.scrollY); }
      f2.onscroll = function () { f1.scroll(f1.scrollX, f2.scrollY); }
   }

  dojo.addOnLoad(scroll_sync);
</script>

这在 Firefox 3.x 和 Chrome 5.x 中运行良好。但在 Internet Explorer 8 中则不然。有什么想法吗?

I have a web page made of three frames, something like this:

+----------------+
|       0        |
+-------+--------+
|       |        |
|   1   |    2   |
|       |        |
+-------+--------+

Frames 1 and 2 are for comparing some similar data. I'd like to sync the vertical scrollbars on these frames (setting the scroll bar value on both sides to be the same).

My current approach is to have the following code in frame 0:

<script>
   function scroll_sync() {
      var f1 = window.parent.frames[1];
      var f2 = window.parent.frames[2];

      f1.onscroll = function () { f2.scroll(f2.scrollX, f1.scrollY); }
      f2.onscroll = function () { f1.scroll(f1.scrollX, f2.scrollY); }
   }

  dojo.addOnLoad(scroll_sync);
</script>

This works fine in Firefox 3.x and Chrome 5.x. Not in Internet Explorer 8, though. Any ideas?

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

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

发布评论

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

评论(1

往日 2024-09-12 10:32:43

在 IE 中,我认为您需要使用 scrollTo ,例如: f2.scrollTo(0,f1_scroll_position);

In IE I think you need to use scrollTo like: f2.scrollTo(0,f1_scroll_position);

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