HTML DOM Style emptyCells 屬性

2018-08-04 20:41 更新

Style emptyCells 屬性

Style 對(duì)象參考手冊 Style 對(duì)象

定義和用法

emptyCells 屬性設(shè)置或返回是否顯示表格中的空單元格的邊框和背景。

語法

設(shè)置 emptyCells 屬性:

Object.style.emptyCells="show|hide|inherit"

返回 emptyCells 屬性:

Object.style.emptyCells

描述
show 顯示空單元格的邊框和背景,即在空單元格周圍繪制邊框。
hide 隱藏空單元格的邊框和背景,即不在空單元格周圍繪制邊框。
inherit emptyCells 屬性的值從父元素繼承。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 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>

嘗試一下 ?


Style 對(duì)象參考手冊 Style 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)