HTML DOM deleteCaption() ·½·¨
¶¨ÒåºÍÓ÷¨
deleteCaption() ·½·¨ÓÃÓÚɾ³ý±í¸ñµÄ caption ÔªËØ¼°ÆäÄÚÈÝ¡£
Óï·¨
tableObject.deleteCaption()
˵Ã÷
Èç¹û¸Ã±íÓÐ <caption> ÔªËØ£¬Ôò´ÓÎĵµÊ÷ÖÖɾ³ýËü¡£·ñÔò£¬Ê²Ã´Ò²²»×ö¡£
ʵÀý
ÏÂÃæµÄÀý×Óɾ³ý±í¸ñµÄ±êÌ⣺
<html>
<head>
<script type="text/javascript">
function deleteCaption()
{
document.getElementById('myTable').deleteCaption()
}
</script>
</head>
<body>
<table id="myTable" border="1">
<caption>My table caption</caption>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick="deleteCaption()"
value="Delete caption" />
</body>
</html>