jQuery 解除绑定、绑定功能在 IE8 中不起作用
任何人都可以帮我区分这两行,第一行在 IE 和 FF 上都可以正常工作,但第二行仅在 FF 中工作正常。
$(window).resize( function() ); // Works in both IE and FF
$(window).unbind('resize').bind('resize', function() ); // Works only in FF
提前致谢
Can anyone help me to differentiate this two line , one is working fine on IE as well as FF, but second is working fine only in FF .
$(window).resize( function() ); // Works in both IE and FF
$(window).unbind('resize').bind('resize', function() ); // Works only in FF
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试其他物体。例如,$(文档) 或 $('body')。
如果处理调整大小很重要,我通常会创建包装 div 并在超时时检查其宽度和高度。
Try other objects. For example, $(document) or $('body').
If handling resizing is important, i usually create wrapping div and check its width and height on timeout.