我正在使用 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);
}});
也许必须查看圆形参数