gpt4 book ai didi

javascript - 没有提交按钮的 FormData

转载 作者:行者123 更新时间:2023-12-03 07:08:00 26 4
gpt4 key购买 nike

你好,我有他的上传文件表格

$("#form").on('submit',(function(e) {
e .preventDefault();
$.ajax({
url: "index2.php",
type: "POST",
data: new FormData(this),
contentType: false,
cache: false,
...

以 html 形式:

 <form id="form" action="index2.php" method="post" enctype="multipart/form-data">
<input id="uploadImage" type="file" accept="image/*" name="image" /><br/>
<input id="button" type="submit" value="Upload">
</form>

它有效。但现在我想要删除按钮。我想在选择文件时自动上传。

          $.ajax({
url: "index2.php",
type: "POST",
data: new FormData("#form"),
contentType: false,

...

但不起作用。请帮我做到这一点吗?

最佳答案

您可以添加放置区域(只需拖放)。查看自动上传:true。

$('.fileupload').fileupload({
dataType: 'json',
url: "/somewhere.com/here",
dropZone: $("#picturezone"),
autoUpload: true,
done: function (e, data) {
$("#pic").attr("src", URl + data.result.name + "?" + d.gettime());
}
}).on('fileuploadprogressall', function (e, data) {
//Do something while it is uploading.
});

关于javascript - 没有提交按钮的 FormData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36728455/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com