以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);
}
});
谢谢!