如果我的屏幕宽度小于960像素,如何使jQuery做某事?不管我的窗口大小如何,以下代码始终会触发第二个警报:
if (screen.width < 960) { alert('Less than 960'); } else { alert('More than 960'); }
使用jQuery获取窗口的宽度。
if ($(window).width() < 960) { alert('Less than 960'); } else { alert('More than 960'); }