jQuery   发布时间:2022-04-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了jQuery Window Width else if语句大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道为什么我的最后一个if语句永远不会执行.我想这样做:

$(document).ready(function() {
    function checkWidth() {
        var windowSize = $(window).width();

        if (windowSize <= 479) {
            console.log("screen width is less than 480");
        }
        else if (windowSize = 480 && windowSize <= 719) {
            console.log("screen width is less than 720 but greater than or equal to 480");
        }
        else if (windowSize = 720 && windowSize <= 959) {
            console.log("screen width is less than 960 but greater than or equal to 720");
        }
        else if (windowSize >= 960) {
            console.log("screen width is greater than or equal to 960");
        }
    }

    // Execute on load
    checkWidth();
    // Bind event listener
    $(window).resize(checkWidth);
});

一切都记录在控制台中,除了最后一个if.我究竟做错了什么?

谢谢,

更新:

对于仍然感兴趣的人,我强烈推荐enquire.js插件

http://wicky.nillia.ms/enquire.js/

放下最好的方法我发现在JS中识别媒体查询.

解决方法

您在代码中缺少一对> =并且没有比较windowSize,但是由于windowSize = 480之类的语句而分配了一个新值.请尝试使用此版本:

$(document).ready(function() {
    function checkWidth() {
        var windowSize = $(window).width();

        if (windowSize <= 479) {
            console.log("screen width is less than 480");
        }
        else if (windowSize <= 719) {
            console.log("screen width is less than 720 but greater than or equal to 480");
        }
        else if (windowSize <= 959) {
            console.log("screen width is less than 960 but greater than or equal to 720");
        }
        else if (windowSize >= 960) {
            console.log("screen width is greater than or equal to 960");
        }
    }

    // Execute on load
    checkWidth();
    // Bind event listener
    $(window).resize(checkWidth);
});

大佬总结

以上是大佬教程为你收集整理的jQuery Window Width else if语句全部内容,希望文章能够帮你解决jQuery Window Width else if语句所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。