我查看了许多使用 AJAX 拖放将图像上传到服务器的脚本。我发现的脚本不是 jQuery,非常大,并且不完全符合我的要求。
将来它应该使用 jQuery、AJAX 和 PHP 上传图像。
我的问题
在许多示例中,我都查看了 e.dataTransfer.files 的工作。在我的情况下,它没有。我需要以某种方式绑定它吗?
我尽可能地想要 jQuery。
提琴手
随心所欲地玩...
代码
<html>
<head>
<style type="text/css">
#dropzone {
border: 2px dashed #ccc;
width: 300px;
height: 200px;
}
</style>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#dropzone').on({
dragenter: function(e) {
$(this).css('background-color', 'lightBlue');
},
dragleave: function(e) {
$(this).css('background-color', 'white');
},
drop: function(e) {
e.stopPropagation();
e.preventDefault();
console.log(e.dataTransfer.files);
}
});
});
</script>
</head>
<body>
<div id="dropzone">
Drop files here
</div>
</body>
</html>