我有jQuery ajax表,我需要保持表高度,而它的主体没有完全加载。这是我的代码:
var tableHeight = parent.height();
// set parent fixed height so page don't jump up/down during adding
parent.height(tableHeight);
// or: parent.css("height", tableHeight + "px");
$tbody.hide().empty();
// no items loaded
if (rowsData.length === 0) {
this._noItems();
} else {
this._rowAdder(rowsData, actionDisplay);
}
$tbody.show();
parent.height("auto");
我知道,我可以使用css属性" visibility",但是例如Mozilla没有改变css样式或表属性和表格显示良好。我的问题是:为什么Chromium会忽略已配置的css样式或表属性高度?请问有人帮帮我吗?是的;)
答案 0 :(得分:0)
设置height属性并不像设置宽度那么容易。
在大多数情况下,如果您希望孩子知道100%的含义,您需要将html和身高设置为100%。
html,body{
height: 100%;
}