我目前的解决方案是
<img src="cache/image-resized.jpg" /><img src="static/image.jpg" itemprop="image" />
这有效. Google正确解释微数据,并显示已调整大小的图像.但是用户浏览器还会下载静态图像,这是一个大图像.
解决方法 (注意:现在删除的答案建议使用元元素)而不是元素,你should use the link
element,因为内容是一个URI:
When a string value is a URL,it is expressed using the
a
element and itshref
attribute,theimg
element and itssrc
attribute,or other elements that link to or embed external resources.
它甚至是required:
If a property’s value,as defined by the property’s deFinition,is an absolute URL,the property must be specifIEd using a URL property element.
所以它应该是:
<link itemprop="image" href="static/image.jpg" />总结
以上是内存溢出为你收集整理的html – 如何设置微数据图像属性,而不让浏览器下载图像?全部内容,希望文章能够帮你解决html – 如何设置微数据图像属性,而不让浏览器下载图像?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)