$(window).resize(); doesn't work

后端 未结 5 1976
梦谈多话
梦谈多话 2021-01-28 07:21

I\'ve got a problem with window.resize . My code js/jquery is here

var x = $(window).width();
var y = $(window).height();
var z = $(\'#card\').height();
var a =          


        
5条回答
  •  闹比i
    闹比i (楼主)
    2021-01-28 07:58

    Try this:

    $(function(){updateBodySize();}); //kiedy zaladowany
    $(window).resize(function(){updateBodySize();}); 
    

提交回复
热议问题