Jquery事件触发其他事件

时间:2012-03-23 09:57:41

标签: jquery javascript-events

我需要一个可以执行以下操作的事件/事件:
用户选择text / Dom元素后,将其拖回第四个,我需要一个函数来运行。 我怎么能这么顺利呢? (jQuery的)

提前致谢。

1 个答案:

答案 0 :(得分:1)

尝试使用jQuery draggable http://jqueryui.com/demos/draggable/

$("#what-will-be-dragged" ).draggable({
   stop: function(event, ui) {
      //this will run when the dragging stops
   }
});