html5 – Meta标签itemprop

前端之家收集整理的这篇文章主要介绍了html5 – Meta标签itemprop前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在我的网页中包含提取的结构化数据。

包括这个描述:

<Meta itemprop="description" content="my description" />

但是我意识到页面上已经有一个正常的元描述:

<Meta name="description" content="my description" />

是否可以离开他们,或者真的有必要将它们合并在一起可能就像:

<Meta itemprop="description" name="description" content="" />

解决方法

你应该离开他们。 Microdata Spec说:

If a Meta element has an itemprop attribute,the name,http-equiv,and
charset attributes must be omitted,and the content attribute must be
present.

因此合并它们将无效。

原文链接:https://www.f2er.com/html5/168927.html

猜你在找的HTML5相关文章