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

后端 未结 5 1977
梦谈多话
梦谈多话 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

    $( document ).ready(function() {
      $(window).resize(updateBodySize());
    });
    

提交回复
热议问题