Table deleteTHead() 方法HTML DOM Table 对象定义和用法deleteTHead() 方法从表中删除 <thead> 元素(及其内容)。提示:如需为表创建新的 <thead> 元素,请使用 createTHead() 方
Table deleteTFoot() 方法HTML DOM Table 对象定义和用法deleteTFoot() 方法从表中删除 <tfoot> 元素(及其内容)。提示:如需为表格创建新的 <tfoot> 元素,请使用 createTFoot()
Table deleteRow() 方法HTML DOM Table 对象定义和用法deleteRow() 方法从表中删除规定索引处的行。提示:请使用 insertRow() 创建和插入新行。另请参阅:HTML 参考手册:HTML <t
Table deleteCaption() 方法HTML DOM Table 对象定义和用法deleteCaption() 方法从表中删除第一个 <caption> 元素(及其内容)。提示:如需为表格创建新的 <caption> 元素,请使用
Table createTHead() 方法HTML DOM Table 对象定义和用法createTHead() 方法创建空的 <thead> 元素 并将其添加到表中。注释:如果表中已经存在 <thead> 元素,则 createTHead()
Table createTFoot() 方法HTML DOM Table 对象定义和用法createTFoot() 方法创建空的 <tfoot> 元素 并将其添加到表中。注释:如果表中已经存在 <tfoot> 元素,则 createTFoot()
Table createCaption() 方法HTML DOM Table 对象定义和用法createCaption() 方法创建空的 <caption> 元素 并将其添加到表中。注释:如果表中已经存在 <caption> 元素,则 creat
HTML DOM width 属性HTML DOM Table 参考手册定义和用法width 属性可设置或返回表格的宽度。语法tableObject.width=percent|pixels实例下面的例子可更改表格的宽度:<html><h
HTML DOM summary 属性HTML DOM Table 参考手册定义和用法summary 属性可设置或返回表格的概述。summary 属性为语音合成或非可视的浏览器规定了表格的概述。语法tableObjec
HTML DOM rules 属性HTML DOM Table 参考手册定义和用法rules 属性可设置或返回表格的内部边线。语法tableObject.rules=none|groups|rows|cols|all实例下面的例子设置了表
HTML DOM id 属性HTML DOM Table 参考手册定义和用法idr 属性可设置或返回表格的 id。语法tableObject.id=id实例<html><head><script type="text/javascript">function ale
HTML DOM frame 属性HTML DOM Table 参考手册定义和用法frame 属性可设置或返回表格的外部边框。语法tableObject.frame=void|above|below|hsides|vsides|lhs|rhs|box|borde
HTML DOM cellSpacing 属性HTML DOM Table 参考手册定义和用法cellSpacing 属性可设置或返回在表格中的单元格之间的空白量(以像素为单位)。语法tableObject.cellSpacing=pixe
HTML DOM cellPadding 属性HTML DOM Table 参考手册定义和用法cellPadding 属性可设置或返回单元格边框与单元格内容之间的空白量(以像素为单位)。语法tableObject.cellPaddin
Table caption 属性HTML DOM Table 对象定义和用法caption 属性返回表格的 <caption> 元素。<caption> 元素定义表格的标题。注意:<caption> 标签必须紧跟在 <table> 标签之