HTML DOM axis 屬性
定義和用法
axis 屬性可設(shè)置或返回一個(gè)由逗號(hào)分隔的列表,其中包含了一組類型(有關(guān)聯(lián)的單元格)的名稱。
axis 屬性可為某個(gè)單元格定義類型名稱。
語(yǔ)法
tabledataObject.axis=text
實(shí)例
下面的例子可返回單元格的 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>