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

td/th colSpan 属性

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

td/th colSpan 属性

td/th 对象


定义和用法

colSpan 属性可设置或返回表元横跨的列数。

语法

设置 colSpan 属性:

tdObject.colSpan=”number

或者

thObject.colSpan=”number

返回 colSpan 属性:

tdObject.colSpan

或者

thObject.colSpan

Tip: There is no default value for the colSpan property.

描述
number 定义横跨的列数


浏览器支持

所有主要浏览器都支持 colSpan 属性


实例

实例

下面的例子更改了表元横跨的列数:

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
<script>
function displayResult(){
    document.getElementById(“myHeader1″).colSpan=”2”;
}
</script>
</head>
<body>

<table border=”1″>
    <tr>
        <th id=”myHeader1″>月份</th>
        <th id=”myHeader2″>存款</th>
    </tr>
    <tr>
        <td>January</td>
        <td>$100.00</td>
    </tr>
    <tr>
        <td>February</td>
        <td>$10.00</td>
    </tr>
    <tr>
        <td>March</td>
        <td>$80.00</td>
    </tr>
</table>
<br>
<button type=”button” onclick=”displayResult()”>改变第一个单元格的横跨列数</button>

</body>
</html>


td/th 对象

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

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

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

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2315.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