输入范围滑块功能

时间:2015-12-01 19:03:46

标签: php jquery slider

输入范围滑块可以调用函数吗?

示例:范围滑块,其值为4(0 - 最大4)。 如果滑块值为2,则调用jQuery脚本。

可能的?

3 个答案:

答案 0 :(得分:0)

是的,如果您在停止滑动时使用jquery范围滑块,则可以调用函数

Code examples:
Initialize the slider with the stop callback specified:

$( ".selector" ).slider({
  stop: function( event, ui ) {}
});

//Bind an event listener to the slidestop event:


$( ".selector" ).on( "slidestop", function( event, ui ) {} );

//event in stop event in jquery.

答案 1 :(得分:0)

这是您可以使用此代码的代码。

  $("#div-slider").change(function(event, ui) {
        // set the current value to whatever is selected.
             current = ui.value;
             if(current == 2){
                 $('#logo').hide("fast"); 
               }else{
                    $('#logo').show("fast");
                 }
  });

答案 2 :(得分:0)

行。有用。这是代码:

 $("#div-slider").change(function(event, ui) {
    // set the current value to whatever is selected.
         current =   document.getElementById("slider-1").value; 
         if(current == 2){
             $('#logo').hide("fast"); 
           }else{
                $('#logo').show("fast");
             }

});

@Gaurav:你的工作提示。