我正在使用bootstrap-slider.js,如果滑块具有 jQuery 的特定值(例如 1100),如果有人可以帮助我添加一个函数来添加一个类(.active),我将不胜感激
该类active
应添加到图像或 div中(我在演示中使用字体真棒图标作为示例)
我现在的js
$("#slider").slider({
tooltip: 'always'
});
$("#slider").on("slide", function(slideEvt) {
$("#slider-val").val(slideEvt.value); /* Changes the value of the input field with the slider value */
});
代码笔: http ://codepen.io/anon/pen/ojdEBM