如何获取 Jquery 旋钮的 ID

How to get id of Jquery knob

我正在使用jquery knob,我想获得id旋钮的变化功能。

$(".dial").knob({
  'min': 0,
  'max': 5,
  'readOnly': false,
  'width': 70,
  'height': 70,
  'dynamicDraw': true,
  change: function(value) {
    console.log("changed to: " + value);
  },
});
<input type="text" class="dial" value="2" id="test" disabled="disabled">

提前致谢

change 函数中尝试 this.$.attr('id');

检查工作 FIDDLE LINK