1

私は自分のサイトに Modernizr を含めました。

<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/modernizr.custom.js"></script>

そして私はこれをcustom.jsに持っています:

if (Modernizr.mq("screen and (max-width:480)")) {
alert("hello");
}

ブラウザのサイズを 480px に変更し、サイトを更新しましたが、アラートは表示されませんでした。

これを修正するための提案はありますか?

4

2 に答える 2

5

pxメディアクエリには単位値が必要です。

あなたのライン:

if (Modernizr.mq("screen and (max-width:480)")) {\

する必要があります:

if (Modernizr.mq("screen and (max-width:480px)")) {
于 2011-10-23T04:31:01.743 に答える