Table createCaption() 方法
实例
为表格创建一个带有一些文本的 <caption> 元素:
var table = document.getElementById("myTable").createCaption();
table.innerHTML = "<b>My table caption</b>";
亲自试一试 »
定义和用法
createCaption() 方法创建一个空的 <caption> 元素并将其添加到表中。
注释:如果表中已经存在 <caption> 元素,则 createCaption() 方法返回现有元素,而不创建新元素。
提示:要从表中删除 <caption> 元素,请使用 deleteCaption() 方法。
浏览器支持
方法 | |||||
---|---|---|---|---|---|
createCaption() | Yes | Yes | Yes | Yes | Yes |
语法
tableObject.createCaption()
参数
None |
技术细节
返回值: | 新创建的(或现有的)<caption> 元素 |
---|
更多实例
实例
创建和删除一个 <caption> 元素:
function myCreateFunction() {
var table = document.getElementById("myTable").createCaption();
table.innerHTML = "<b>My table caption</b>";
}
function myDeleteFunction() {
document.getElementById("myTable").deleteCaption();
}
亲自试一试 »
相关页面
HTML 参考手册: HTML <caption> tag
❮ Table 对象