| | |
| | | var bodyHeight = $("#body").outerHeight(); |
| | | var topHeight = $("#top").outerHeight(); |
| | | var centerHeight = $("#center").outerHeight(); |
| | | // console.log(bodyHeight); |
| | | // console.log(topHeight); |
| | | // console.log(centerHeight); |
| | | |
| | | var hh = bodyHeight - topHeight-centerHeight - 26 ;//6是body上内边距 |
| | | return hh; |
| | |
| | | var h2 = parseInt(hh*0.4) |
| | | return h2; |
| | | } |
| | | //获取除搜索条件以及页签外高度 |
| | | function GetTableTabHeight() { |
| | | var bodyHeight = $("#body").outerHeight(); |
| | | var topHeight = $("#top").outerHeight(); |
| | | var centerHeight = $("#center").outerHeight(); |
| | | var tabHeight = $("#tab").outerHeight(); |
| | | // console.log(bodyHeight); |
| | | // console.log(topHeight); |
| | | // console.log(centerHeight); |
| | | // console.log(tabHeight); |
| | | |
| | | var hh = bodyHeight - topHeight-centerHeight-tabHeight - 57 ;//6是body上内边距 |
| | | return hh; |
| | | } |
| | | |
| | | //判断是否正整数 true 正整数 false 其他 |
| | | function isIntNum(val){ |