第1章 第1118节 dom table createCaption

推荐给朋友

Table createCaption() 方法

createCaption() 方法用于在表格中获取或创建 <caption> 元素。

注意:如果 caption 元素在表格中已经存在, createCaption() 方法返回已经存在的标题,而不是新建一个<caption> 元素。

提示: 移除表格的 caption 元素,请使用 deleteCaption() 方法。

语法

tableObject.createCaption()

浏览器支持

所有主要浏览器都支持 createCaption() 方法。

在线实例

实例

下面的例子为表格创建了一个标题:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>牛客教程(nowcoder.com)</title>
<script>
function displayResult(){
    var x=document.getElementById("myTable").createCaption();
    x.innerHTML="<b>我的表格标题</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()">创建一个表格标题</button>

</body>
</html>

尝试一下