HTML DOM ColumnGroup 对象
JavaScript基础 2022-05-13 16:17:05小码哥的IT人生shichen
HTML DOM ColumnGroup 对象
ColumnGroup 对象
ColumnGroup 对象表示 HTML <colgroup> 元素。
访问 ColumnGroup 对象
您可以通过使用 getElementById() 来访问 <colgroup> 元素:
var x = document.getElementById("myColgroup");
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table,th,td
{
border:1px solid black;
}
</style>
</head>
<body>
<h3>关于如何访问 COLGROUP 元素的一个演示</h3>
<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 元素应该横跨的列数。</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
创建 ColumnGroup 对象
您可以通过使用 document.createElement() 方法来创建 <colgroup> 元素:
var x = document.createElement("COLGROUP");