HTML DOM emptyCells 属性
定义和用法
emptyCells 属性设置是否显示表格中的空单元格(仅用于“分离边框”模式)。
语法:
Object.style.emptyCells=hide|show
可能的值
值 | 描述 |
---|---|
hide | 默认。不在空单元格周围绘制边框。 |
show | 在空单元格周围绘制边框。 |
实例
本例改变空单元格的显示方式:
<html>
<head>
<script type="text/javascript">
function showEmptyCells()
{
document.getElementById('myTable').style.emptyCells="show"
}
</script>
</head>
<body>
<table border="1" id="myTable">
<tr>
<td>100</td>
<td>200</td>
</tr>
<tr>
<td>300</td>
<td></td>
</tr>
</table>
<input type="button" onclick="showEmptyCells()"
value="Show empty cells">
</body>
</html>