jQuery星级评级插件

时间:2011-03-29 16:04:05

标签: javascript jquery

我正在使用星级评分插件,但我无法正确配置,在右侧显示悬停标签,如本页所示:Test-3B:

http://www.fyneworks.com/jquery/star-rating/#tab-Testing

<script>
$(function(){
$('.star').rating({
focus: function(value, link){
// 'this' is the hidden form element holding the current value
// 'value' is the value selected
// 'element' points to the link element that received the click.
var tip = $('#hover-test');
tip[0].data = tip[0].data || tip.html();
tip.html(link.title || 'value: '+value);
},
blur: function(value, link){
var tip = $('#hover-test');
$('#hover-test').html(tip[0].data || '');
}
});
});

</script>
<input type="radio" name="rating" value="1" style="margin: 0;" class="star"  title="Very     poor"/>
    &nbsp;
<input type="radio" name="rating" value="2" style="margin: 0;" class="star" title="Poor"/>
    &nbsp;
<input type="radio" name="rating" value="3" style="margin: 0;" class="star" title="OK"/>
    &nbsp;
<input type="radio" name="rating" value="4" style="margin: 0;" class="star" title="Good"/>
    &nbsp;
<input type="radio" name="rating" value="5" style="margin: 0;" class="star" title="Very good"/>
<span id="hover-test" style="margin:0 0 0 20px;">Hover tips will appear in here</span><br />

1 个答案:

答案 0 :(得分:1)

我试过你的插件,效果很好。

我把源代码放在这里:http://jsfiddle.net/VgWtG/

您可以自己测试一下。 对于您的代码,请尝试放置<script type='text/javascript'>而不是</script>。然后,使用div围绕您的输入集。

但我很确定你的问题来自缺少的包含(在我给你的源代码中检查它)。 问候。