jQuery如果在页面上找到此图像,请添加此元标记?

时间:2012-03-28 23:09:18

标签: jquery image find

我正在尝试为显示星星的动态图像添加丰富的代码段。我的购物车唯一写的是这张图片,所以我必须找到正在显示的图像,然后添加正确的元标记。

因此,如果正在显示的图像是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>

1 个答案:

答案 0 :(得分:0)

$('#rate-me meta').attr('content', $('#rate-me').find('img:first').attr('src').substr(0,1));