欢迎访问服务器技术网-www.fuwuqijishu.com

tr deleteCell() 方法

JavaScript fuwuqijishu 2年前 (2022-09-04) 130次浏览 0个评论 扫描二维码
文章目录[隐藏]

tr deleteCell() 方法

tr 对象


定义和用法

deleteCell() 方法用于删除表格行中的单元格(<td> 元素)。

语法

trObject.deleteCell(index)

描述
index

参数 index 是要删除的表元在行中的位置。

该方法将删除表行中指定位置的表元。


浏览器支持

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


实例

实例

下面的例子从行中删除了一个单元格:

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
<script>
function displayResult(){
    var firstRow=document.getElementById(“myTable”).rows[0];
    firstRow.deleteCell(0);
}
</script>
</head>
<body>

<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>

</body>
</html>


tr 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2119.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900