我有两张表,其中一张显示,另一张隐藏。
当页面加载时,我使用 jQuery 显示另一个,它显示完美,但问题是我希望隐藏的表格显示在我使用的另一个表格上,z-index
但表格仍然彼此相邻显示。
<table border="1" class="mask">
<tr>
<td>this table should be over the background</td>
</tr>
</table>
<table class="mask1" border="1">
<tr>
<td>this table should be in the background</td>
</tr>
</table>
CSS:
.mask {
display:none;
}
JS:
$(document).ready(function(){
setTimeout(function(){
get = $(document).find('.mask');
$(get).show();
$(get).css({"background-color": "red","z-index": "999"});
},5000);
});
我展示了表格,背景采用红色,但z-index
不能正常工作,表格没有显示在任何其他东西上。
有什么遗漏吗?