0

可能重复:
如何使用 jQuery 异步上传文件?
jQuery Ajax 文件上传

我使用 $.post 将表单数据发送到 php 页面以添加到数据库。我想知道我可以使用相同的方式上传文件吗?或者我必须使用 JQuery 插件来做到这一点?这是我的代码:

$.post("demo.php",{name:$("#name").value,family:$("#family").value},function(result){
   $("#message").html(result);
});
4

2 回答 2

1

I'm not 100% sure about uploading a file via the post command using jQuery, but frankly it's just easier to use a plugin that can also handle cool HTML 5 support like drag and drop. One that I found worked really well is https://github.com/blueimp/jQuery-File-Upload

And it's under the MIT license, so you should be good in that perspective.

于 2012-06-03T06:58:58.687 回答
1

不,您不能使用管理异步文件上传$.post

改用插件,我使用了Blueimp,它给了我很好的结果。

于 2012-06-03T07:10:20.313 回答