固定表头方法,直接在js里面设置一定的高度

webUi
赵桐华 5 years ago
parent 8da9b40034
commit 702f3f6136
  1. 33
      frontend/views/menu/index.php

@ -102,21 +102,24 @@ use \common\libs\MyLib;
//使得table有一定的高度,出现滚动条 //使得table有一定的高度,出现滚动条
function table(){ function table(){
//获取body高度 //获取body高度
var a=$(".gray-bg").height(); var a=$(".gray-bg").height();
//获取标题高度 //获取条件选择高度
var c=$('.ibox-title').height(); var b=$('#searchFrm').height();
//获取table高度 //获取标题高度
var e=$("row").height(); var c=$('.ibox-title').height();
var d=a-c-100; //获取table高度
if(e>d){ var e=$("row").height();
$('.fixed-table-body').css({'height':d}); var d=a-c-b-100;
console.log("滚动条"); if(e>d){
}else{ $('.fixed-table-body').css({'height':d});
$('.fixed-table-body').css({'height':e}); console.log("滚动条");
console.log("没有滚动条"); }else{
} $('.fixed-table-body').css({'height':e});
} console.log("没有滚动条");
}
}
$(function() { $(function() {
search(); search();
table(); table();

Loading…
Cancel
Save