小码哥的IT人生

Column span 属性

JavaScript基础 2022-06-08 15:46:18小码哥的IT人生shichen

Column span 属性

实例

把前两列的背景色设置为红色:

document.getElementById("myCol").span="2";
document.getElementById("myCol").style.backgroundColor="red";

完整实例:

<!DOCTYPE html>
<html>
<head>
<style>
table,th,td
{
border:1px solid black;
}
</style>
</head>
<body>
<table>
  <colgroup>
    <col id="myCol">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td>$49</td>
  </tr>
</table>
<p>请点击按钮,把前两列的背景色设置为红色。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
document.getElementById("myCol").span="2";
document.getElementById("myCol").style.backgroundColor="red";
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

span 属性设置或返回列的 span 属性的值。

span 属性 <col> 元素应该横跨的列数。

浏览器支持

IE Firefox Chrome Safari Opera
         

所有浏览器都支持 span 属性。

语法

返回 span 属性:

columnObject.span

设置 formMethod 属性:

columnObject.span=number

属性值

描述
number 规定 <col> 元素应该横跨的列数。不允许负值。

技术细节

返回值: 数值,表示列数。

更多实例

返回 <col> 元素应该横跨的列数:

var x = document.getElementById("myCol").span;

x 的结果:

2

完整实例:

<!DOCTYPE html>
<html>
<head>
<style>
table,th,td
{
border:1px solid black;
}
</style>
</head>
<body>
<table>
  <colgroup>
    <col id="myCol" span="2" style="background-color:red">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td>$49</td>
  </tr>
</table>
<p>请点击按钮,返回列的 span 属性的值。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myCol").span;
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

相关页面

HTML 参考手册:HTML <col> span 属性

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024