如何确定滑块是否移动(或其值已更改)

时间:2014-08-03 07:23:14

标签: javascript jquery html css jquery-ui

我的代码中有一个滑块。现在,如果我点击滑块,将弹出一个警告。但是,我想仅在滑块移动或其值与之前的移动相比已更改时弹出该警报。是否可能。

这是我的代码。

<html>
<head>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
      <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
      <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script>
$(document).ready(function(){
$(function () {

         $("#slider-1").slider({
             range: true,
             min: 0,
             max: 500,
             values: [0, 0],
             slide: function (event, ui) {
                 $("#priceA").val("$" + ui.values[0] + " - $" + ui.values[1]);
             },
             stop: function () {
                 getValues();
             }
         });


     });

$("#slider-1").click(function(){
alert('Changed');
});      

});          
</script>
</head>
<p>
    <label for="priceA">Price rangeA:</label>
    <input type="text" id="priceA" style="border:0; color:#067ab4; font-weight:bold;">
</p>
<div id="slider-1" class="myClass"></div><br><br>
</html>

1 个答案:

答案 0 :(得分:0)

jquery ui slider有change个事件: http://api.jqueryui.com/slider/#event-change

$( ".selector" ).slider({
    change: function( event, ui ) {
        console.log(ui.value);
    }
});