Table createCaption() 方法
Table 對(duì)象定義和用法
createCaption() 方法用于在表格中獲取或創(chuàng)建 <caption> 元素。
注意:如果 caption 元素在表格中已經(jīng)存在, createCaption() 方法返回已經(jīng)存在的標(biāo)題,而不是新建一個(gè)<caption> 元素。
提示: 移除表格的 caption 元素,請(qǐng)使用 deleteCaption() 方法。
語(yǔ)法
tableObject.createCaption()
瀏覽器支持
所有主要瀏覽器都支持 createCaption() 方法
實(shí)例
實(shí)例
下面的例子為表格創(chuàng)建了一個(gè)標(biāo)題:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("myTable").createCaption();
x.innerHTML="<b>My table caption</b>";
}
</script>
</head>
<body>
<table id="myTable" border="1">
? <tr>
??? <td>cell 1</td>
??? <td>cell 2</td>
? </tr>
? <tr>
??? <td>cell 3</td>
??? <td>cell 4</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Create caption</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("myTable").createCaption();
x.innerHTML="<b>My table caption</b>";
}
</script>
</head>
<body>
<table id="myTable" border="1">
? <tr>
??? <td>cell 1</td>
??? <td>cell 2</td>
? </tr>
? <tr>
??? <td>cell 3</td>
??? <td>cell 4</td>
? </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Create caption</button>
</body>
</html>
嘗試一下 ?
Table 對(duì)象
更多建議: