我正在尝试为显示星星的动态图像添加丰富的代码段。我的购物车唯一写的是这张图片,所以我必须找到正在显示的图像,然后添加正确的元标记。
因此,如果正在显示的图像是1stars.gif我必须写:
<meta itemprop="ratingValue" content="1" />
如果显示的图像是5stars.gif我必须写:
<meta itemprop="ratingValue" content="5" />
以下是更新的完整示例:
<span id="rateitnow">
{module_ratingrank,images/icons/stars}
<meta itemprop="ratingValue" content="" />
</span>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#rateitnow meta').attr('content', $('#rateitnow').find('img:first').attr('src').substr(0,1));
});
</script>
答案 0 :(得分:0)
$('#rate-me meta').attr('content', $('#rate-me').find('img:first').attr('src').substr(0,1));