同步滚动两个框架(请与浏览器无关!)
我有一个由三个框架组成的网页,如下所示:
+----------------+
| 0 |
+-------+--------+
| | |
| 1 | 2 |
| | |
+-------+--------+
框架 1
和 2
用于比较一些相似的数据。我想同步这些框架上的垂直滚动条(将两侧的滚动条值设置为相同)。
我当前的方法是在框架 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 IE 中,我认为您需要使用
scrollTo
,例如:f2.scrollTo(0,f1_scroll_position);
In IE I think you need to use
scrollTo
like:f2.scrollTo(0,f1_scroll_position);