我有這樣的功能:如何使用與事件的UI命名函數jQuery中
$(".timebox").draggable({
containment: "parent",
axis: "x" ,
drag: refactorTimebox(event, ui)
});
,我想調用的函數refactorTimebox(event, ui)
。如何將event
和ui
變量傳遞給我的函數。
行拖動:refactorTimebox(event, ui)
不起作用。
這是refactorTimebox功能:
function refactorTimebox(event, ui){
console.log(ui.position);
}