例
这是正确的HTML5吗?
<p>Duration: <time>3:30 min</time>.</p>
或者应该< time>只在这样的情况下使用?
<p>Good morning. The actual time is: <time>9:45</time></p>.
文件
MDN提出以下定义:
The HTML element represents either a time on a 24-hour clock or a precise date in the Gregorian calendar (with optional time and timezone information).
This element is intended to be used presenting dates and times in a machine readable format. This can be helpful for user agents to offer any event scheduling for user’s calendar.
但是,W3C中的定义有些不同,它指的是持续时间:
SpecifIEs the date or time that the element represents.
Value: Any one of the following:
(…)
a valID duration string as defined in the [HTML5] specification
Examples:
06002
所以,我不确定我是否应该使用< time>在这种情况下与否.有什么想法吗?
解决方法 是的,你可以使用time
element持续时间. 但价值必须是valid duration string,“3:30分钟”不是.
您可以使用datetime
attribute指定正确的值,并将“3:30 min”保留为元素内容,例如:
<time datetime="3m 30s">3:30 min</time>总结
以上是内存溢出为你收集整理的持续时间的HTML时间标记全部内容,希望文章能够帮你解决持续时间的HTML时间标记所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)