How is Value determined for an Anchor Tag with Microdata?

被刻印的时光 ゝ 提交于 2019-11-27 07:51:06

问题


How do Google and others determine the value of an itemprop on an Anchor tag?

 <a href="foo.html" itemprop="barprop">Name Of Link</a>

In the example above, is the itemprop's value the href attribute, much like how the link tag is parsed? Or is the value the innerHTML, as a standard block element is parsed?

I've searched quite a bit and cannot find the answer. I'm open to all answers, but I'd very much like a source for the answers given so I can further investigate.

Thanks in advance!


回答1:


The Microdata spec (which is now merely W3C Note) defines:

If the element is an a, area, or link element
The value is the absolute URL that results from resolving the value of the element's href attribute relative to the element at the time the attribute is set, or the empty string if there is no such attribute or if resolving it results in an error.

Exception: when the a/area/link element has an itemscope attribute, then the itemprop "value is the item created by the element", not the href value.




回答2:


It seems I found the answer not long after posting this. However, rather than deleting the question, I'm sure there are others out there who are wondering the same thing.

The short answer is: It uses the href attribute.

The long answer can be found here: http://schema.org/docs/gs.html#advanced_canonical



来源:https://stackoverflow.com/questions/20255080/how-is-value-determined-for-an-anchor-tag-with-microdata

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!