我正在使用jQuery Raty JS,我希望得分总是在0.5的间隔内,无论点击星星的哪个位置 例如。 0.5,1,1.5,2,2.5,3,3.5,4,4.5,5
预期结果:恒星应以0.5
的间隔显示目前,代码就像
$('#custom_p').raty({
half: true ,
halfShow : true,
precision : true,
round : { down: .25, full: .6, up: .76 },
click: function(score, evt) {
alert('ID: ' + this.id + "\nscore: " + score + "\nevent: " + evt);
}});
也许要查看圆形参数
答案 0 :(得分:0)
我使用
click: function(score, evt) {
var score = Math.round(score*2)/2;
}
但不是最好的方法:/