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.
我正在使用 jquery ui 滑块,我有两个句柄,例如,我想要的是在各自的 div 中获取句柄值。我想更新“handle1”div 中的句柄值和“handle2”div 中的句柄 2 值。小提琴
$("#slider").slider({values:[0,100], slide: function(event, ui){ //alert(ui.handle) } });
滑块事件的ui参数有值数组,它将给出句柄的值,你可以使用它
ui
$("#slider").slider({ values: [0, 100], slide: function (event, ui) { $('.handle1').text(ui.values[0]); $('.handle2').text(ui.values[1]); } });
演示:小提琴