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.
誰かがこの2つの行を区別するのを手伝ってくれますか?1つはIEとFFで正常に動作していますが、2つ目はFFでのみ正常に動作しています。
$(window).resize( function() ); // Works in both IE and FF $(window).unbind('resize').bind('resize', function() ); // Works only in FF
前もって感謝します
他のオブジェクトを試してください。たとえば、$(document) または $('body') です。
サイズ変更の処理が重要な場合は、通常、ラッピング div を作成し、タイムアウト時にその幅と高さを確認します。