How to display units with Jquery Knob

2019-03-01 16:01发布

I'm using Jquery knob (http://anthonyterrien.com/knob/) and it works great but rather than have a dimentionless number displayed in the middle I would like to display units with it ei % or F etc ... How can I do this?

2条回答
霸刀☆藐视天下
2楼-- · 2019-03-01 16:12
$("input.Measure").knob({
        min: 1
        max: 10
        stopper: true,
        readOnly: false,//if true This will Set the Knob readonly cannot click
        draw: function () {
             $(this.i).val(this.cv + '%') //Puts a percent after values
        },
        release: function (value) {
      //Do something as you release the mouse
    }
});
查看更多
仙女界的扛把子
3楼-- · 2019-03-01 16:14

As Ben explains on Adding Percentages to jquery knob input value, on the recent versions (>1.2.7) you can use the format hook:

$(".dial").knob({
  'format' : function (value) {
     return value + '%';
  }
});
查看更多
登录 后发表回答