轻松上手,快乐学习!

Style emptyCells 属性


实例

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

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

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

定义和用法

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


浏览器支持

属性
emptyCells Yes Yes Yes Yes Yes

语法

返回 emptyCells 属性:

object.style.emptyCells

设置 emptyCells 属性:

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

属性值

描述
show 显示空单元格的边框和背景,即在空单元格周围绘制边框。
hide 隐藏空单元格的边框和背景,即不在空单元格周围绘制边框。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

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

更多实例

实例

返回 emptyCells 属性:

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

相关页面

CSS 教程: CSS Table

CSS 参考手册: empty-cells 属性


❮ Style 对象