jQuery:代码在 Firefox 中有效,但在 IE 中无效
下面的代码应该同步两个 iFrame 的水平滚动条。 它可以在 Firefox 中运行,但不能在 IE 中运行。 在 IE 中,它没有进入 ifr1.scroll() 函数。
<SCRIPT>
$(window).load( function(){
var ifr1 = $( $('#UserQueue_Header').contents() );
var ifr2 = $( $('#UserQueue_Detail').contents() );
ifr1.scroll( function(){
ifr2.scrollLeft(ifr1.scrollLeft());
});
ifr2.scroll( function(){
ifr1.scrollLeft(ifr2.scrollLeft());
});
});
</SCRIPT>
<iframe src="test.html" id="UserQueue_Header"></iframe>
<iframe src="test.html" id="UserQueue_Detail"></iframe>
The code below is supposed to sync the horizontal scrollbars of two iFrame.
It works in Firefox but does not work in IE.
In IE, it's not entering the ifr1.scroll() function.
<SCRIPT>
$(window).load( function(){
var ifr1 = $( $('#UserQueue_Header').contents() );
var ifr2 = $( $('#UserQueue_Detail').contents() );
ifr1.scroll( function(){
ifr2.scrollLeft(ifr1.scrollLeft());
});
ifr2.scroll( function(){
ifr1.scrollLeft(ifr2.scrollLeft());
});
});
</SCRIPT>
<iframe src="test.html" id="UserQueue_Header"></iframe>
<iframe src="test.html" id="UserQueue_Detail"></iframe>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您声明了 jQuery '$' 变量两次。对于这些行:
您只需要:
You're declaring the jQuery '$' variable twice. For these lines:
You need simply: