在jquery easyui datagrid 中,客户电脑分辨率不同,往往会造成分页不在一屏幕内显示,如何做到自适应呢?看下面代码:
$('#tt').datagrid('resize',{ height: window.innerHeight - otherHeight, // otherHeight 表格以上元素高度 width: window.innerWidth //根据实际情况计算出的宽度 }); 各种高度和宽度参考: 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()); //获取滚动条到左边的垂直宽度