0

我一直在谷歌搜索近一天,只是为了让这个工作没有运气。我怎样才能从这段代码中实现

$(function () {
  var slider2 = $("#slider2").slider({
    range: true,
    min: 0,
    max: 500,
    values: [ 75, 300 ],
    start: function( event, ui ) {
      $(this).find('.ui-slider-handle.ui-state-hover')
        .append('<span class="ui-slider-tooltip">'+ui.value+'</span>');
    },
    slide: function( event, ui ) {
      $(this).find('.ui-slider-tooltip').text(ui.value);
    },
    stop: function( event, ui ) {
        $(this).find('.ui-slider-tooltip').remove();
    }
  });
});

到这个代码

$(function () {
  var slider2 = $("#slider2").slider({
    range: true,
    min: 0,
    max: 500,
    showTooltip: true
  });
});

http://jsbin.com/epekex/1

4

0 回答 0