| 12345678910111213141516171819202122232425262728 |
- console.info("drag");
- //记录被拖拽的元素
- var eleDrag = null;
- // 为Div添加ondragstart事件
- function addDivDragStart() {
- $('.item').on('dragstart', function(ev) {
- eleDrag = ev.target;
- });
- }
- function dragPreventEvent() {
- $(document.body).on('dragover', function(ev) {
- ev.preventDefault();
- });
- $(document.body).on('drop', function(ev) {
- ev.preventDefault();
- eleDrag.parentNode.removeChild(eleDrag);
- // 把光标移到最后
- // changeClassName();
- });
- // 为displayArea添加拖拽事件,用来防止事件冒泡
- $('#displayArea').on('dragover', function(ev) {
- ev.preventDefault();
- });
- $('#displayArea').on('drop', function(ev) {
- ev.preventDefault();
- ev.stopPropagation();
- });
- }
|