是否可以使用ui.value作为参数调用jQuery UI滑块元素之外的函数?

时间:2013-07-26 23:08:16

标签: jquery jquery-ui

以ui.value作为参数,以某种方式调用jQuery UI滑块元素之外的函数是否可行?

我现在这样做的方式:

 $("#id").slider({  
slide: function(event,ui) {
$("#another_id").val(ui.value);
...other statements...
}
});

这是我尝试解决问题的方法,但是当我尝试这个时,滑块小部件的句柄不会移动......:

function insertValue(value) {
$("#another_id").val(value);
...other statements...
}

$("#id").slider({   
slide: function(event,ui) {
insertValue(ui.value);
}
});

谢谢!

0 个答案:

没有答案