拖拽和放置对象
new Mo.Drag( Mo("#example").item(0) );
                
                
                
                
                
                支持以下回调事件:
| 事件: | 描述: | 
| onStart | 开始拖动时响应 | 
| onEnd | 拖动结束后响应 | 
| onDrag | 拖动中响应 | 
开始拖动调用。
x X 坐标
y Y 坐标
e Event 事件
new Mo.Drag( Mo("#example").item(0) );
                                    
            拖动中调用。
x X 坐标
y Y 坐标
e Event 事件
new Mo.Drag( Mo("#example").item(0) );
                
            结束拖动调用。
x X 坐标
y Y 坐标
e Event 事件
new Mo.Drag( Mo("#example").item(0) );
                
            new Mo.Drag( Mo("#handle").item(0) , Mo("#root").item(0) );
                new Mo.Drag( Mo("#handle").item(0) , Mo("#root").item(0) );
                
                
                new Mo.Drag( Mo("#thumb").item(0) , null, 0, 300, 0, 0);
                
                
                
            new Mo.Drag( Mo("#simple").item(0) , null, 0, 274, 0, 248);