我的 HTML 中有一个发送文件的字段。当用户选择图像时,他们会预览即将上传的图像(js)。当这个预览脚本被激活时,$_FILES
帖子不会发送任何数据(用 php 验证var_dump($_FILES)
)。
这是JS:
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#preview')
.attr('src', e.target.result)
.css('display', 'block');
$('#upload').html('<i class="icon-upload"></i> <input type="file" onchange="readURL(this);" size="1" name="foto" class="input-file" />Cambiar imágen')
};
reader.readAsDataURL(input.files[0]); // <- If I delete this line it posts correctly but dosen't preview the image.
}
有人看到错误了吗?