概述
HTML <data>
元素 将一个指定内容和机器可读的翻译联系在一起。但如果内容是与 time 或者 date 相关的,一定要使用 <time>
。
- Content categories Flow content, phrasing content, palpable content.
- Permitted contentPhrasing content.
- Tag omission None, both the starting and ending tag are mandatory.
- Permitted parent elements Any element that accepts phrasing content.
- DOM interface
HTMLDataElement
属性
该元素含有 全局属性。
value
- 该属性指定元素内容对应的机器可读的翻译。
示例
下面的示例展示了一些产品名称并且每个名称都与其UPC码相关联。
<p>新产品</p> <ul> <li><data value="3967381398">迷你番茄酱</data></li> <li><data value="3967381399">巨无霸番茄酱</data></li> <li><data value="3967381400">超级巨无霸番茄酱</data></li> </ul>
规范
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard <data> |
Living Standard | No change from Recommendation |
HTML5 <data> |
Recommendation | Initial definition. |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 未实现 | 22.0 (22.0) bug 839371 | 未实现 | 未实现 | 未实现 |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 未实现 | 未实现 | 未实现 | 未实现 | 未实现 |
另见
- HTML
<time>
元素。