Latest web development tutorials

HTML DOM td / th axis properties

td / th Object Reference td / th objects

Definition and Usage

axis property sets or returns a comma-separated list, which contains a set of type (cell associated) name.

grammar

Set axis properties:

tdObject.axis="text"

或者

thObject.axis="text"

Returns axis properties:

tdObject.axis

或者

thObject.axis

Tip: axis property has no default value.


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support axis properties.


Examples

Examples

The following example returns the cell axis:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</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>

try it"


td / th Object Reference td / th objects