jQuery drag and drop simulation does not work for the last draggable

前端 未结 1 1023
礼貌的吻别
礼貌的吻别 2020-11-27 23:15

I am trying to simulate the drag and drop simulation using jquery-simulate-ext plugin of jquery-ui.

Before I give the details of the scenario , let me show you th

相关标签:
1条回答
  • 2020-11-27 23:34

    it is because it simulating drag event only without drop, use drag-n-drop instead.

    draggable.simulate("drag-n-drop", {dx: dx,  dy: dy});
    
    0 讨论(0)
提交回复
热议问题