我想将js-fullheight设为自动高度

时间:2016-08-27 13:14:25

标签: javascript jquery

我使用的代码如下,但当我缩小屏幕时,它会隐藏另一个div

var fullHeight = function() {
    if ( !isMobile.any() ) {
        $('.js-fullheight').css('height', $(window).height());
        $(window).resize(function(){
            $('.js-fullheight').css('height', $(window).height());
        });
    }
};

0 个答案:

没有答案