4

当我调整浏览器窗口的大小时,我需要获取正文元素的高度和宽度

请帮助我使用 JQuery 解决这个问题

4

1 回答 1

6

在窗口对象上使用 resize 事件:

$(window).resize(function(){
  var width = $(document).width(), // or $(window).width()
      height = $(document).height(); // or $(window).height()
});
于 2009-08-19T06:05:49.657 回答