在这个W3School示例中,我可以获取有关事件和目标对象的大量数据,但是如何确定将什么对象放到目标上?HTML5确定放置放置对象
#div1 {width:350px;height:70px;padding:10px;border:1px solid #aaaaaa;}
function allowDrop(ev) {
ev.preventDefault();
}
function drag(ev) {
ev.dataTransfer.setData("text", ev.target.id);
}
function drop(ev) {
ev.preventDefault();
var data = ev.dataTransfer.getData("text");
ev.target.appendChild(document.getElementById(data));
}
Drag the W3Schools image into the rectangle:
2016-02-26
GoBeavs