使用jquery中height()方法获取各种高度大全
时间:2021-04-02 09:45:08|栏目:jquery|点击: 次
复制代码 代码如下:
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
栏 目:jquery
下一篇:jQuery中filter(),not(),split()使用方法
本文标题:使用jquery中height()方法获取各种高度大全
本文地址:http://www.codeinn.net/misctech/92726.html