0

我正在使用 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);
}});

也许必须查看圆形参数

4

1 回答 1

0

我用

click: function(score, evt) {               
    var score = Math.round(score*2)/2;
}

但不是最好的方法:/

于 2018-11-08T08:10:53.987 回答