是否有任何解决方案可以在点击button
时停止拖动。
文档没有给出正确的说明
http://www.eyecon.ro/bootstrap-slider/
$("#stopDrag").click(function(){
});
答案 0 :(得分:14)
使用启用和禁用功能扩展滑块插件,如:
<script src="/slider/js/bootstrap-slider.js"></script>
<script>
$.fn.slider.Constructor.prototype.disable = function () {
this.picker.off();
}
$.fn.slider.Constructor.prototype.enable = function () {
if (this.touchCapable) {
// Touch: Bind touch events:
this.picker.on({
touchstart: $.proxy(this.mousedown, this)
});
} else {
this.picker.on({
mousedown: $.proxy(this.mousedown, this)
});
}
}
</script>
示例html :
<div class="container" style="background-color:darkblue;">
<br>
<input id="slide" type="text" class="span2" value="" data-slider-min="-20" data-slider-max="20" data-slider-step="1" data-slider-value="-14" data-slider-orientation="vertical" data-slider-selection="after">
<button id="enable">Enable</button>
<button id="disable">Disable</button>
</div>
示例javascript:
$('#slide').slider();
$('#enable').click(function(){ $('#slide').slider('enable') });
$('#disable').click(function(){ $('#slide').slider('disable') });
答案 1 :(得分:5)
通过将data-slider-enabled
属性设置为true
或false
,可以实现停用幻灯片的功能。
所以你可以像这样实现一个禁用的滑块:
<input id="slide" type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="5" data-slider-enabled="false"/>
或者启用的滑块如下:
<input id="slide" type="text" data-slider-min="0" data-slider-max="20" data-slider-step="1" data-slider-value="5" data-slider-enabled="true"/>
你也可以使用jQuery启用和禁用这样的滑块:
$("#slide").slider();
$("#slide").slider("enable");
$("#slide").slider("disable");
或者像纯JavaScript一样:
var slide = new Slider("#slide");
slide.enable();
slide.disable();
对于您的实施,您需要这样做:
$("#stopDrag").click(function(){
$("#slide").slider("disable");
});
答案 2 :(得分:1)
您需要绑定mouseenter / mouseleave事件以显示/隐藏工具提示:
$.fn.slider.Constructor.prototype.disable = function() {
this.picker.off();
}
$.fn.slider.Constructor.prototype.enable = function() {
if (this.touchCapable) {
// Touch: Bind touch events:
this.picker.on({
touchstart: $.proxy(this.mousedown, this),
mouseenter: $.proxy(this.showTooltip, this),
mouseleave: $.proxy(this.hideTooltip, this)
});
} else {
this.picker.on({
mousedown: $.proxy(this.mousedown, this),
mouseenter: $.proxy(this.showTooltip, this),
mouseleave: $.proxy(this.hideTooltip, this)
});
}
}
答案 3 :(得分:1)
只需在滑块容器上有一个自定义css类,它使用指针事件控制鼠标事件。然后它只是在您的JavaScript代码中添加或删除它。
CSS看起来像这样
#container {
pointer-events:auto;
}
#container.slider-unavailable {
pointer-events:none;
}
您只需要在滑块容器元素上添加/删除类。对于角度来说,它特别好用,你的代码就像这样:
<div class="container" ng-class="{'class1 class2 class3':true, 'slider-unavailable':sliderIsUnavailable}">
<input id="slide" type="text" class="span2" value="" data-slider-min="-20" data-slider-max="20" data-slider-step="1" data-slider-value="-14" data-slider-orientation="vertical" data-slider-selection="after"><br>
<label>Slider is unavailable:
<input type="checkbox" ng-model="sliderIsUnavailable">
</label><br>
</div>