ColumnGroup span 属性
JavaScript基础 2022-06-08 15:48:05小码哥的IT人生shichen
ColumnGroup span 属性
实例
把前两列的背景色设置为红色:
document.getElementById("myColgroup").span="2";
document.getElementById("myColgroup").style.backgroundColor="red";
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table,th,td
{
border:1px solid black;
}
</style>
</head>
<body>
<table>
<colgroup id="myColgroup"></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("myColgroup").span="2";
document.getElementById("myColgroup").style.backgroundColor="red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
span 属性设置或返回列组的 span 属性的值。
span 属性 <colgroup> 元素应该横跨的列数。
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有浏览器都支持 span 属性。
语法
返回 span 属性:
columngroupObject.span
设置 formMethod 属性:
columngroupObject.span=number
属性值
值 | 描述 |
---|---|
number | 规定 <colgroup> 元素应该横跨的列数。不允许负值。 |
技术细节
返回值: | 数值,表示列数。 |
更多实例
返回 <colgroup> 元素应该横跨的列数:
var x = document.getElementById("myColgroup").span;
x 的结果:
2
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table,th,td
{
border:1px solid black;
}
</style>
</head>
<body>
<table>
<colgroup id="myColgroup" span="2" style="background:red"></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>点击按钮,返回 colgroup 元素的 span 属性的值。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myColgroup").span;
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
相关页面
HTML 参考手册:HTML <col> span 属性