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

后端 未结 5 1975
梦谈多话
梦谈多话 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条回答
  •  北恋
    北恋 (楼主)
    2021-01-28 08:15

    Or you could try this:

    window.onresize = updateBodySize;

提交回复
热议问题