How to get Body element height dynamically using JQuery

心不动则不痛 提交于 2019-12-05 01:59:56

问题


I need to get the body element height and width, when i resize the browser windows

Please help me to solve this problem using JQuery


回答1:


Use the resize event on the window object:

$(window).resize(function(){
  var width = $(document).width(), // or $(window).width()
      height = $(document).height(); // or $(window).height()
});


来源:https://stackoverflow.com/questions/1298026/how-to-get-body-element-height-dynamically-using-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!