1. ホーム
  2. ジャバスクリプト

[解決済み】画面幅が960px未満の場合に何かする。

2022-04-04 10:46:51

質問

画面幅が960ピクセル以下の場合に、jQueryに何かをさせるにはどうしたらいいですか?以下のコードでは、ウィンドウサイズに関係なく、常に2番目のアラートが発せられます。

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');
}