HTML5 Drag and Drop
- Make an Element Draggable
<img draggable="true">
- What to Drag - ondragstart and setData()
- Where to Drop - ondragover
By default, data/elements cannot be dropped in other elements. To allow a drop, we must prevent the default handling of the element.
event.preventDefault()
时间: 2024-10-05 21:12:41