本文介绍了如何使用Jquery旋钮显示单位的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用Jquery旋钮( http://anthonyterrien.com/knob/),它可以正常工作很好,而不是在中间显示无维数.我想显示ei%或F等单位.我该怎么做?
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?
推荐答案
$("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
}
});
这篇关于如何使用Jquery旋钮显示单位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!