Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何在旋钮.js 插件中提供的值字段中包含文本。
https://github.com/aterrien/jQuery-Knob
我没有遇到可以在值中包含文本字段的参数。如果有解决方法,请帮助我。
您可以配置“格式”挂钩来更改文本值在显示之前的格式设置方式。
例如,要在文本中添加百分号,您可以执行以下操作:
$(".dial").knob({ 'format' : function (value) { return value + '%'; } });
value传入的是数字,无论函数返回什么都是显示的内容。
value