我需要body元素的高度和宽度,当我调整浏览器窗口
请帮我解决使用JQuery这个问题
我需要body元素的高度和宽度,当我调整浏览器窗口
请帮我解决使用JQuery这个问题
使用窗口对象的调整大小事件:
$(window).resize(function(){
var width = $(document).width(), // or $(window).width()
height = $(document).height(); // or $(window).height()
});