小码哥的IT人生

HTML <td> 标签的 axis 属性 详解

HTML基础 2023-07-13 19:13:14小码哥的IT人生shichen

HTML <td> 标签的 axis 属性

实例

带有分类单元格的表格:

<table border="1" width="100%">
  <tr>
    <th axis="name">Company</td>
    <th axis="contact">Email</td>
    <th axis="contact">Phone</td>
    <th axis="contact">Address</td>
  </tr>
  <tr>
    <td axis="name">Apple, Inc.</td>
    <td axis="contact">someone@example.com</td>
    <td axis="contact">+12345678</td>
    <td axis="contact">1 Infinite Loop Cupertino, CA 95014</td>
  </tr>
</table>

 

完整实例【亲自试一试】:

<html>
<body>
<table border="1" width="100%">
  <tr>
    <th axis="name">Name</td>
    <th axis="contact">Email</td>
    <th axis="contact">Phone</td>
    <th axis="contact">Address</td>
  </tr>
  <tr>
    <td axis="name">George Bush</td>
    <td axis="contact">someone@example.com</td>
    <td axis="contact">+789451236</td>
    <td axis="contact">Fifth Avenue New York,USA</td>
  </tr>
</table>
<p>几乎没有浏览器支持 axis 属性。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

axis 属性用于对单元格进行分类。

axis 属性可用于对相关的信息列进行组合。

详细解释

表格里通常塞满了数据,用来向读者提问。例如,一个费用报告表格通常会询问这样的问题:“一个月在吃饭上花多少钱?”或是“我的花费一共是多少?”。在将来,浏览器在 axis 属性的帮助下,就有可能支持这些询问了。

这个属性的数值是引号包括的一列类型的名称,这些名称可以用来形成一个查询。举个例子,如果你在一个食物购物的单元格中使用 axis=meals,浏览器能够找到那些单元格,获取它的值,并且计算出总数。

浏览器支持

几乎没有浏览器支持 axis 属性。

语法

<td axis="value">

属性值

描述
category_name 规定类别的名称。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024