我正在學習拖放文件上傳。這是下面的方法可用於上傳文件。它只是一個簡單的程序,如果我通過輸入type =「file」上傳圖像;我可以以數組格式獲取文件信息,但是如果我使用拖放方法;我得到以下輸出。 預先感謝您....
home.html的
<html>
<head>
<title>try try</title>
<link href="style.css" rel="stylesheet"></link>
<script src="jquery.js"></script>
<script src="upload.js"></script>
</head>
<body>
<form id="upload">
<div style="display:block; width:300px; height:300px;border:4px dashed #ccc;" id="upload_area" ondragover="return false"></div>
<span class="result" style="border:1px solid black;"></span>
</form>
</body>
upload.js
$(document).ready(function(){
jQuery.event.props.push('dataTransfer');
$('#upload_area').bind('drop', function(e) {
var files = e.dataTransfer.files;
var formobj = document.getElementById("upload");
var ans = new FormData(formobj);
$.ajax({
type:"post",
data:ans,
cache : false,
url:"upload.php",
processData:false,
contentType:false,
success:function(response){
$(".result").html(response);
}
})
return false;
});
})
upload.js
<?php
echo "<pre>";
print_r($_FILES);
echo "</pre>";
?>
輸出
array()
哪裏是在你的代碼的輸入類型= 「文件」 字段? – Saty 2015-04-03 13:56:38
在html中沒有'type as file'的輸入。更新你的html。 – Raja 2015-04-03 13:57:46
可能重複的[如何異步上傳文件?](http://stackoverflow.com/questions/166221/how-can-i-upload-files-asynchronously) – 2015-04-03 14:11:00