tr insertCell() 方法

返回上一级

tr 对象的 insertCell() 方法用于在 HTML 表的一行的指定位置插入一个空的 <td> 元素

语法

trObject.insertCell( index )

值描述

描述
index 该方法将创建一个新的 <td> 元素,把它插入行中指定的位置
新单元格将被插入当前位于 index 指定位置的表元之前
如果 index 等于行中的单元格数,则新单元格被附加在行的末尾

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流浏览器都支持 insertCell() 方法

范例

下面的范例在表格行中插入了一个单元格

<script>
function displayResult(){
    var firstRow=document.getElementById("myTable").rows[0];
    var x=firstRow.insertCell(-1);
    x.innerHTML="New cell"
}
</script>
<table id="myTable" border="1">
    <tr>
        <td>First cell</td>
        <td>Second cell</td>
        <td>Third cell</td>
    </tr>
</table>
<br>
<button type="button" onclick="displayResult()">插入单元格</button>

运行范例 »

更多范例

  1. 向表格添加新行 - 然后添加单元格和内容

返回上一级

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.