简体   繁体   中英

How to get the value of the slider bootstrap?

How to get the values of the slider bootstrap to hidden iputs?

<input type="hidden" name="min_value" id="min_value" value="">
<input type="hidden" name="max_value" id="max_value" value="">
$(function () {
  $("#slider-range-s1").slider({
    range: true,
    min: 0,
    max: 500,
    value: [0, 500]
  });
});

I think it's currently broken.

Documentation states:

Methods

.slider('getValue')

Get the value.

How ever, calling $('#sliderDivId').slider('getValue') returns the jQuery selector rather than the value...

For now you could manually grab it from the data object... $('#sliderDivId').data('slider').getValue()

fast fix:

$.fn.slider = function (option, val) {

    if (typeof option == 'string') {
        if (this.length) {
            var data = this.eq(0).data('slider');
            if (data)
                return data[option](val);

            return null;
        }
    }

    return this.each(function () {
        var $this = $(this),
            data = $this.data('slider'),
            options = typeof option === 'object' && option;
        if (!data) {
            $this.data('slider', (data = new Slider(this, $.extend({}, $.fn.slider.defaults, options))));
        }
    })
};

The problem is, that there is more than 1 element with the same ID (the slider div and the input inside the slider div ), in this example $('#sliderDivId'). If you select the input element with JQuery, you can use the slider API.

$('input[id="sliderDivId"]').slider('getValue')

At time of writing it's a bit flaky but you can make it work:

1/ Make sure you specify an empty range starting "value[0]". Unless you do this its internal value field becomes undefined eg

$('#setBidDialogSlider').slider({ value: [0], max: max, step: 0.2, formater: function(v) { return v.toFixed(2)+"BTC" } });

2/ Now finally you can catch the value in the event

$('#setBidDialogSlider').slider().on('slide', function(ev) {
    $scope.dialog.order_value = ev.value*$scope.dialog.price;
});

I know I'm late but this is still broken but to fix it open up bootstrap-sliders.js and inject these three things:

the very end of the first function: Slider :

this.calculateValue();

right before: return val; in the calculateValue function

grandVal = val;

after the $.fn.slider function:

$.fn.sliderValue = function(){
    return grandVal;
};
var grandVal;

Now you can access the value by $('#MySliderId').sliderValue()

you can use this from the built in function

$( "#slider-range-s1" ).slider({
    range: true,
    min: 0,
    max: 500,
    value: [ 0, 500 ]
    slide: function( event, ui ) {
        // u could use this function
        $(".min-slider-value").html( "$" + ui.values[ 0 ]);
        $(".max-slider-value").html( "$" + ui.values[ 1 ]);
    },
    change: function(event, ui) {
        // or u could use this function
        $(".min-slider-value").html( "$" + ui.values[ 0 ]);
        $(".max-slider-value").html( "$" + ui.values[ 1 ]);
    }
});

and thank you i thought i coud share this with you guys :D

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM