自定义easyui 中 Draggable 的revert位置

1             onStartDrag:function(e){
2                 $(this).draggable('options').cursor = 'not-allowed';
3                 $(this).draggable('proxy').css('z-index',1000);
4                 $(this).poshytip('disable');
5                 e.data.startLeft = $(this).offset().left - 15;
6                 e.data.startTop = $(this).offset().top - 15;
7             },
原文地址:https://www.cnblogs.com/wc1217/p/2481987.html