当前位置:嗨网首页>书籍在线阅读

05-解决方案

  
选择背景色: 黄橙 洋红 淡粉 水蓝 草绿 白色 选择字体: 宋体 黑体 微软雅黑 楷体 选择字体大小: 恢复默认

6.1.2 解决方案

jQuery的 widthheight 方法提供对窗口或者文档基本尺寸的简单访问:

jQuery(document).ready(function() {
   alert('Window height: ' + jQuery(window).height()); // 返回视区高度
   alert('Window width: ' + jQuery(window).width()); // 返回视区宽度
   alert('Document height: ' + jQuery(document).height()); // 返回文档高度
   alert('Document width: ' + jQuery(document).width()); //返回文档宽度
});