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!
The Microdata spec (which is now merely W3C Note) defines:
If the element is an
a
,area
, orlink
element
The value is the absolute URL that results from resolving the value of the element'shref
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.
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