Style emptyCells 屬性
Style 對(duì)象定義和用法
emptyCells 屬性設(shè)置或返回是否顯示表格中的空單元格的邊框和背景。
語法
設(shè)置 emptyCells 屬性:
Object.style.emptyCells="show|hide|inherit"
返回 emptyCells 屬性:
Object.style.emptyCells
值 | 描述 |
---|---|
show | 顯示空單元格的邊框和背景,即在空單元格周圍繪制邊框。 |
hide | 隱藏空單元格的邊框和背景,即不在空單元格周圍繪制邊框。 |
inherit | emptyCells 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 emptyCells 屬性。
注意:不同瀏覽器中的默認(rèn)值不同。在 IE、Chrome 和 Safari 瀏覽器中,默認(rèn)值是 "show",而在 Firefox 和 Opera 瀏覽器中,默認(rèn)值是 "hide"。
注意:IE7 及更早的版本不支持 emptyCells 屬性。IE8 只有規(guī)定了 !DOCTYPE 才支持 emptyCells 屬性。IE9 支持 emptyCells 屬性。
實(shí)例
實(shí)例
改變空單元格的顯示方式:
<html>
<head>
<script>
function show()
{
document.getElementById("myTable").style.emptyCells="show";
}
function hide()
{
document.getElementById("myTable").style.emptyCells="hide";
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td></td>
</tr>
</table>
<br>
<button type="button" onclick="show()">Show empty cells</button>
<button type="button" onclick="hide()">Hide empty cells</button>
</body>
</html>
<head>
<script>
function show()
{
document.getElementById("myTable").style.emptyCells="show";
}
function hide()
{
document.getElementById("myTable").style.emptyCells="hide";
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td></td>
</tr>
</table>
<br>
<button type="button" onclick="show()">Show empty cells</button>
<button type="button" onclick="hide()">Hide empty cells</button>
</body>
</html>
嘗試一下 ?
Style 對(duì)象
更多建議: