2012-05-19 145 views
0

我試圖檢測元素被拖動的時間。 jQuery文檔指出添加.bind('drag'應該這樣做。不幸的是,這不適用於我的情況。我已驗證我的項目是可拖動的(由jQueryUI初始化)。jQueryUI檢測元素被拖動時

//all of these elements show a "drag" listener, yet nothing happens  
console.log($('#roster .sponsors li, #roster .players li')); 

$('#roster .sponsors li, #roster .players li').bind('drag', function() { 
     $('.team div.sponsors, .team div.players').remove(); 
     $(this).unbind('drag'); 
}); 

我想「這裏拖贊助商」得到了div標籤時,他們開始拖着走開.... http://jsfiddle.net/gEuZz/2/

更新

檢查出這個問題 - REMOVED -

回答

0

使用sortstart event。您還需要使用您用於創建排序的相同選擇器來綁定事件。這是你的小提琴的一個分支 - 這些變化 - http://jsfiddle.net/Bs6u7/

+0

看看我上面發佈的鏈接...我有一個奇怪的問題,我無法弄清楚。 – Webnet

相關問題