目录

HTML DOM col 对象


列对象

Column 对象代表 HTML <col> 元素。

访问列对象

您可以使用 getElementById() 访问 <col> 元素:

示例

var x = document.getElementById("myCol");
亲自试一试 »

创建列对象

您可以使用 document.createElement() 方法创建 <col> 元素:

var x = document.createElement("COL");

列对象属性

Property Description
span Sets or returns the value of the span attribute of a column

标准属性和事件

Column 对象还支持标准特性事件


相关页面

HTML 教程:HTML 表格

HTML 参考:HTML <col> 标签

JavaScript 参考:HTML DOM 列组对象