HTML DOM captionSide ÊôÐÔ

HTML DOM Style ¶ÔÏó

¶¨ÒåºÍÓ÷¨

captionSide ÊôÐÔÉèÖñí¸ñ±êÌâµÄλÖá£

Óï·¨£º

Object.style.captionSide=top|bottom|left|right

¿ÉÄܵÄÖµ

Öµ ÃèÊö
top ĬÈÏ¡£°Ñ±í¸ñ±êÌⶨλÔÚ±í¸ñÖ®ÉÏ¡£
bottom °Ñ±í¸ñ±êÌⶨλÔÚ±í¸ñ֮ϡ£
left °Ñ±í¸ñ±êÌⶨλÔÚ±í¸ñµÄ×ó±ß¡£
right °Ñ±í¸ñ±êÌⶨλÔÚ±í¸ñµÄÓұߡ£

ʵÀý

±¾ÀýÒÆ¶¯±í¸ñ±êÌ⣺

<html>
<head>
<style type="text/css">
caption
{
caption-side:bottom; 
}
</style>
<script type="text/javascript">
function moveCaption()
{
document.getElementById('myTable').style.captionSide="right"
}
</script>
</head>
<body>

<table border="1" id="myTable">
  <caption>This is a caption</caption>
  <tr>
    <td>100</td>
    <td>200</td>
  </tr>
  <tr>
    <td>300</td>
    <td>400</td>
  </tr>
</table>
<br />
<input type="button" onclick="moveCaption()"
value="Move table caption">

</body>
</html>

TIY

captionSide - ¶Ô±í¸ñ±êÌâ½øÐж¨Î»£¨ÇëÔÚ·Ç IE ä¯ÀÀÆ÷Öв鿴£©

HTML DOM Style ¶ÔÏó

VUE