目录

style emptyCells 属性

示例

更改空单元格的显示方式:

function show() {
  document.getElementById("myTable").style.emptyCells = "show";
}

function hide() {
  document.getElementById("myTable").style.emptyCells = "hide";
}
亲自试一试 »

描述

emptyCells 属性设置或返回是否显示空单元格的边框和背景。


浏览器支持

Property
emptyCells Yes Yes Yes Yes Yes

语法

返回emptyCells属性:

object.style.emptyCells

设置emptyCells属性:

object.style.emptyCells = "show|hide|initial|inherit"

属性值

Value Description
show Border and background are shown in empty cells. This is default
hide Border and background are hidden in empty cells
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 展示
返回值: 一个字符串,代表空单元格的边框和背景
CSS版本 CSS2

更多示例

示例

返回emptyCells属性:

alert(document.getElementById("myTable").style.emptyCells);
亲自试一试 »

相关页面

CSS教程:CSS表

CSS 参考:空单元格属性