HTML DOM emptyCells 属性
JavaScript基础 2022-06-08 14:50:55小码哥的IT人生shichen
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>
TIY
完整实例【改变空单元格的显示方式】:
<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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html