带HTML的整页拖放文件网站
对于整页的拖放文件,请尝试以下代码:
var myDrop = document.getElementById('dropZone');
function displayDropZone() {
myDrop.style.visibility = "visible";
}
function hideDropZone() {
myDrop.style.visibility = "hidden";
}
function allowDrag(ev) {
if (true) {
ev.dataTransfer.dropEffect = 'copy';
ev.preventDefault();
}
}
function handleDrop(ev) {
ev.preventDefault();
hideDropZone();
alert('This is Drop!');
}
window.addEventListener('dragenter', function(ev) {
displayDropZone();
});
myDrop.addEventListener('dragenter', allowDrag);
myDrop.addEventListener('dragover', allowDrag);
myDrop.addEventListener('dragleave', function(e) {
hideDropZone();
});
myDrop.addEventListener('drop', handleDrop);热门推荐
10 香薰的寓意祝福语简短
11 团队入伙简短祝福语大全
12 致同事升迁祝福语简短
13 旗袍文案婚礼祝福语简短
14 领证花束文案祝福语简短
15 离别对同事祝福语简短
16 喜欢表姐结婚祝福语简短
17 英语寄语生日祝福语简短
18 生日酒宴诗句祝福语简短