原文:http://www.open-open.com/code/view/1421827925437
alert($(window).height()); //可视区域高度 alert($(document).height()); //文档的高度 alert($(document.body).height());//文档body的高度 alert($(document.body).outerHeight(true));//文档body的总高度 包括border padding margin alert($(window).width()); //可视区域宽度 alert($(document).width());//文档对于象宽度 alert($(document.body).width());//文档body的高度 alert($(document.body).outerWidth(true));//文档body的总宽度 包括border padding margin alert($(document).scrollTop()); //获取滚动条到顶部的垂直高度 alert($(document).scrollLeft()); //获取滚动条到左边的垂直宽度
时间: 2024-10-09 12:11:11