我正在使用 jQuery Form 插件将图像上传到我的服务器。上传服务器发送消息后,说明上传是否成功,我想接收此数据,根据接收到的数据显示一条消息,但我做得不对。由于我在他们的官方页面上找不到合适的信息,所以我在这里问。这就是我提交图像的方式:
<script src="http://malsup.github.com/jquery.form.js"></script>
.
.
.
<form action="upload.php" method="post" enctype="multipart/form-data" id="uploadForm">
<label id="uploadLabel">Add new background</label><br>
<input type="file" name="file" id="file" accept="image/*"><br>
<input type="submit" name="submit" value="Upload" id="uploadButton">
</form>
---------------------------------------------------------------------------------------
$("#uploadButton").click(function(){
$('#uploadForm').ajaxForm({url: 'upload.php', type: 'post'}, function(data){
console.log(data);
});
});
然后我在upload.php 中处理图像,然后我应该从这个脚本接收一些数据,但我没有收到任何东西。