Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能帮我区分这两条线,一条在 IE 和 FF 上运行良好,但第二条仅在 FF 上运行良好。
$(window).resize( function() ); // Works in both IE and FF $(window).unbind('resize').bind('resize', function() ); // Works only in FF
提前致谢
尝试其他对象。例如,$(document) 或 $('body')。
如果处理调整大小很重要,我通常会创建包装 div 并在超时时检查其宽度和高度。