我正在创建一个简单的图像拖放 jquery 扩展。它的作用是拖动一个文件,它会显示文件的预览,然后返回一个带有文件名的对象和要通过 ajax POST 发送的图像数据。
(function($) {
$.fn.dnd = function()
{
jQuery.event.props.push('dataTransfer');
$(this).bind('drop',function(e){
var files = e.dataTransfer.files;
var $preview = $(this);
var result = [];
if(files.length > 1)
{
$(this).html('One file only');
return false;
}
if(files[0].type === 'image/png' ||
files[0].type === 'image/jpeg' ||
files[0].type === 'image/ppeg')
{
var fileReader = new FileReader();
fileReader.onload = (function(f)
{
return function(e)
{
result.push({name:f.name,value:this.result});
$preview.removeAttr('style');
$preview.html('<img src="'+ this.result +'" width="80%"/>');
};
})(files[0]);
fileReader.readAsDataURL(files[0]);
}
else
{
$(this).html('images only. GIF not allowed.');
return false;
}
e.preventDefault();
return result;
});
};
}(jQuery));
我以这种方式执行代码。
$(document).ready(function(){
var result = $('#ec-drag-n-drop').dnd();
console.log(result);
}
当我查看控制台时,它返回“未定义”。我错过了什么吗?