问题
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