div高度自适应

1 function getAutoHeight() {
2   var height = $("body").height() - $('#toolbar_title').height() - 12;
3   return height;
4 }
1 $(window).resize(function() {
2     height = getAutoHeight();
3 });
原文地址:https://www.cnblogs.com/fengzhentian/p/4505223.html