设置值后Jquery滑块不工作

时间:2013-09-12 06:52:08

标签: jquery slider

我正在使用滑块更改值,我也在为用户值提供输入框。 我的问题是当用户更改输入框中的值,之后当我滑动时,它不起作用。

  //i am using this for setting position of slider from input box

   $('#angleslider').slider("value",$('#angleval').val());          

   calXY(); //the function i call after with getting the value from user


 $('#angleslider').slider({
    min: 0,
    max: 360,
    value: 45,
    slide: function(event, ui)
    {
        $('#angleval').attr("value",ui.value);
        calXY(); //the function i call after slide
    }   
});

所以当我移动滑块时,一切都很好,然后我改变输入框的值,一切都很好,滑块位置设置,但是现在我移动滑块,它移动,没有任何反应..

0 个答案:

没有答案