HTML DOM Caption 对象
JavaScript基础 2022-05-13 16:16:48小码哥的IT人生shichen
HTML DOM Caption 对象
Caption 对象
Caption 对象代表 HTML <caption> 元素。
访问 Caption 对象
您可使用 getElementById() 来访问 <caption> 元素:
示例代码:
var x = document.getElementById("myCaption");
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h3>如何访问 CAPTION 元素的演示</h3>
<table>
<caption id="myCaption">Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
<p>单击按钮将标题的颜色设置为红色。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementById("myCaption");
x.style.color = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Caption 对象
您可使用 document.createElement() 方法来创建 <caption>
元素:
示例代码:
var x = document.createElement("CAPTION");
完整实例:
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
margin-top: 20px;
}
</style>
</head>
<body>
<p>单击该按钮以创建 CAPTION 元素。</p>
<button onclick="myFunction()">试一试</button>
<table id="myTable">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
<script>
function myFunction() {
var x = document.createElement("CAPTION");
var t = document.createTextNode("Monthly savings");
x.appendChild(t);
var table = document.getElementById("myTable")
table.insertBefore(x, table.childNodes[0]);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
提示:您还可以使用 Table 对象的 createCaption 方法创建 <caption>
元素。
Caption 对象属性
属性 | 描述 |
---|---|
align |
HTML5 不支持。请改用 style.textAlign 或 style.captionSide。 设置或返回标题的对齐方式。 |