简体   繁体   English

此时元素“span”上不允许使用属性“datetime”

[英]Attribute “datetime” not allowed on element “span” at this point

I ran my webpage through validator.w3.org and it came up with three errors.我通过 validator.w3.org 运行我的网页,结果出现了三个错误。 I am using Schema.org/WebPage for reference.我正在使用 Schema.org/WebPage 作为参考。

Attribute “datetime” not allowed on element “span” at this point.此时元素“span”上不允许使用属性“datetime”。

Anyone understand what they mean任何人都明白他们的意思

<span class="alignright">
<br/>Last Modified : <span itemprop="dateModified" datetime="20-06-2022T20:39:45">20th June 2022</span><br/>
Date Published : <span itemprop="dateCreated" datetime="16-04-2014T10:38:32">16th April 2014</span>
</span>

I can't see anything wrong with this and the error is not clear.我看不出有什么问题,而且错误也不清楚。

datetime a valid attribute for <time> , <ins> , and <del> tags which would be semantically perfect for that layout. datetime<time><ins><del>标签的有效属性,在语义上非常适合该布局。

<span class="alignright">
<br/>Last Modified : 
<time itemprop="dateModified" datetime="2022-06-20T20:39:45">20th June 2022</time><br/>
Date Published : 
<time itemprop="dateCreated" datetime="2014-04-16T10:38:32">16th April 2014</time>
</span>


声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM