以下是一些 Table 对象的常见属性和方法:
常见属性:
1. caption: 表格的标题部分(<caption>)。
var tableCaption = tableObject.caption;
2. rows: 表格中所有行的集合。
var tableRows = tableObject.rows;
3. tBodies: 表格中所有 <tbody> 元素的集合。
var tableBodies = tableObject.tBodies;
常见方法:
1. createCaption(): 创建并返回一个新的表格标题部分。
var newCaption = tableObject.createCaption();
2. deleteCaption(): 删除表格的标题部分。
tableObject.deleteCaption();
3. insertRow(index): 在指定位置插入一行,并返回对新插入行的引用。
var newRow = tableObject.insertRow(2); // 在第3行插入新行
4. deleteRow(index): 删除指定位置的行。
tableObject.deleteRow(1); // 删除第2行
这只是 Table 对象的一小部分属性和方法。你可以使用这些属性和方法来动态地操作表格内容,例如添加行、删除行、访问单元格等。
转载请注明出处:http://www.zyzy.cn/article/detail/4431/HTML