JavaScript 文件拖拽使用 HTML5
拖放 (DnD) 是一个功能强大的用户界面概念,它使得使用鼠标点击轻松复制、重新排序和删除项目。这使得用户可以点击并按住元素上的鼠标按钮,将其拖动到另一个位置,然后松开鼠标按钮以将元素放到该位置。
针对拖放
<!DOCTYPE HTML> <html> <head> <style> #boxA, #boxB {float:left;padding:10px;margin:10px; -moz-user-select:none;} #boxA { background-color: #6633FF; width:75px; height:75px; } #boxB { background-color: #FF6699; width:150px; height:150px; } </style> <script> function dragStart(ev) { ev.dataTransfer.effectAllowed='move'; ev.dataTransfer.setData("Text", ev.target.getAttribute('id')); ev.dataTransfer.setDragImage(ev.target,0,0); return true; } </script> </head> <body> <center> <h2>Drag and drop HTML5 demo</h2> <div>Try to drag the purple box around.</div> <div id = "boxA" draggable = "true" ondragstart = "return dragStart(ev)"> <p>Drag Me</p> </div> <div id = "boxB">Dustbin</div> </center> </body> </html>
广告