欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM axis 屬性

定義和用法

axis 屬性可設(shè)置或返回一個由逗號分隔的列表,其中包含了一組類型(有關(guān)聯(lián)的單元格)的名稱。

axis 屬性可為某個單元格定義類型名稱。

語法

tabledataObject.axis=text

實例

下面的例子可返回單元格的 axis:

<<html>
<head>
<script type="text/javascript">
function alertAxis()
  {
  alert(document.getElementById('td3').axis);
  }
</script>
</head>
<body>

<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>City</th>
</tr>
<tr>
<td id="td1">Harry</td>
<td id="td2">Potter</td>
<td id="td3" axis="location">NY</td>
</tr>
<tr>
<td id="td4">Peter</td>
<td id="td5">Griffin</td>
<td id="td6" axis="location">Las Vegas</td>
</tr>
</table>
<br />
<input type="button" onclick="alertAxis()"
value="Alert axis" />

</body>
</html>