我正在使用 Jquery 旋钮(http://anthonyterrien.com/knob/),它工作得很好,但我不想在中间显示一个无量纲的数字,我想用它来显示单位 ei % 或 F 等......如何我可以这样做吗?
问问题
4626 次
2 回答
6
$("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
}
});
于 2013-10-08T09:18:35.320 回答
2
正如 Ben 在将百分比添加到 jquery 旋钮输入值中解释的那样,在最新版本(> 1.2.7)上,您可以使用格式挂钩:
$(".dial").knob({
'format' : function (value) {
return value + '%';
}
});
于 2016-10-09T17:39:45.680 回答