javascript - 想透過js判斷css的媒體查詢 出錯
習慣沉默
習慣沉默 2017-07-05 10:38:16
0
3
808
@media screen and (min-width: 360px) and (max-width: 375px){
    .ejiao_description .form form p{
        margin-bottom: 11px;
    }
}

css中媒體查詢是這麼寫的
js

var screen1 = window.matchMedia('@media  (min-width: 360px) and (max-width: 375px)');
    if (screen1.matches){
        XXXXXX.....
    }
    else{
        XXXX....
    }

但是現在沒起作用 請問哪裡錯了麼

習慣沉默
習慣沉默

全部回覆(3)
滿天的星座
https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia

請看文件

我想大声告诉你
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        @media screen and (min-width: 360px) and (max-width: 375px){
            .aa .form form p{
                margin-bottom: 11px;
            }
        }
    </style>
</head>
<body>
<!-- 想通过js判断css的媒体查询 出错 -->
<p class="aa">
    <p class="form">
        <form>
            <p>123123</p>
        </form>
    </p>
</p>
</body>
<script>
    var screen1 = window.matchMedia('(min-width: 360px) and (max-width: 375px)');
    console.log( screen1 );
    if (screen1.matches){
        console.log( 1 );
    }
    else{
        console.log( 2 );
    }
</script>
</html>

window.matchMedia('(min-width: 360px) and (max-width: 375px)');,沒@media

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!