td/th axis 屬性
td/th 對象定義和用法
axis 屬性可設(shè)置或返回一個由逗號分隔的列表,其中包含了一組類型(有關(guān)聯(lián)的單元格)的名稱。
語法
設(shè)置 axis 屬性:
tdObject.axis="text"
或者
thObject.axis="text"
或者
thObject.axis="text"
返回 axis 屬性:
tdObject.axis
或者
thObject.axis
或者
thObject.axis
提示:axis屬性沒有默認值。
瀏覽器支持
所有主流瀏覽器都支持 axis 屬性。
實例
實例
下面的例子可返回單元格的 axis:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult(){
var x=document.getElementById("myTable");
var th=x.getElementsByTagName("th");
for (var i=0;i<th.length;i++){
alert ("The " + (i+1) + ". column axis is: " + th[i].axis);
}
}
</script>
</head>
<body>
<table border="1" id="myTable">
<tr>
<th axis="car">名稱</th>
<th axis="country">國家</th>
</tr>
<tr>
<td>BMW</td>
<td>Germany</td>
</tr>
<tr>
<td>Volvo</td>
<td>Sweden</td>
</tr>
<tr>
<td>Saab</td>
<td>Sweden</td>
</tr>
</table>
<br>
<button type="button" onclick="displayResult()">獲取Axis</button>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult(){
var x=document.getElementById("myTable");
var th=x.getElementsByTagName("th");
for (var i=0;i<th.length;i++){
alert ("The " + (i+1) + ". column axis is: " + th[i].axis);
}
}
</script>
</head>
<body>
<table border="1" id="myTable">
<tr>
<th axis="car">名稱</th>
<th axis="country">國家</th>
</tr>
<tr>
<td>BMW</td>
<td>Germany</td>
</tr>
<tr>
<td>Volvo</td>
<td>Sweden</td>
</tr>
<tr>
<td>Saab</td>
<td>Sweden</td>
</tr>
</table>
<br>
<button type="button" onclick="displayResult()">獲取Axis</button>
</body>
</html>
嘗試一下 ?
td/th 對象
更多建議: