我一直在尝试使用 jquery、css 和 html 创建一个可扩展的表。我已经让它在 Firefox 和 IE 中运行良好,但是我遇到了一个奇怪的问题,使用 .hide() 可以正常工作,但是当使用 .show() 再次显示表格时,表格的高度会增加时间 .show() 完成。现在我不确定它是否是 chrome/safari、jquery 或我的 CSS 中的错误。
以下是代码的链接 -
http://jsfiddle.net/fonzee666/CN7re/
在运行 chrome 时单击表顶部几次,我在办公室的几台不同的机器上尝试过,得到了相同的结果。我正在运行的 chrome 版本是 - 20.0.1132.57
我的代码是 -
<link rel="stylesheet" type="text/css" href="test.css" />
<!-- For ease i'm just using a JQuery version hosted by JQuery- you can download any version and link to it locally -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
$(".headRow").click(function(){
//alert("hello");
//console.log("here")
var $divRow = $(this).nextAll(".divRow")
if ($divRow.is(":hidden")) {
$divRow.show('fast');
}
else {
$divRow.hide('fast');
}
});
});
</script>
<p>hello</p>
</br>
<div class="divTable" id='tableuno'>
<div class="headRow">
<div class="divCell" align="center">VIP Name</div>
<div class="divCell">IP</div>
<div class="divCell">Ports</div>
<div class="divCell">Method</div>
<div class="divCell">Mode</div>
<div class="divCell">Protocol</div>
<div class="divCell">Graph</div>
</div>
<div class="divRow">
<div class="divCell">Rip Label</div>
<div class="divCell">IP</div>
<div class="divCell">ports</div>
<div class="divCell">Weight</div>
<div class="divCell">onlineoffline</div>
<div class="divCell">updownarrow</div>
<div class="divCell">graph</div>
</div>
<div class="divRow">
<div class="divCell">xxx</div>
<div class="divCell">yyy</div>
<div class="divCell">www</div>
</div>
<div class="divRow">
<div class="divCell">ttt</div>
<div class="divCell">uuu</div>
<div class="divCell">Mkkk</div>
</div>
</div>
</br>
</body>
</html>
而CSS是 -
.divTable{
display:table;
width:auto;
background-color:#eee;
border:1px solid #666666;
border-spacing:5px;
}
.divRow{
display:table-row;
width:auto;
clear:both;
background-color:#fff;
}
.headRow:hover {
filter:Alpha(opacity=55);
//-moz-opacity:0.55;
opacity:0.55;
//border:none;
}
.headRow {
display:table-row;
}
.divCell{
float:left;
display:table-column;
width:200px;
// background-color:#ccc;
}