在我的表单中,我添加了输入文件。
<input name="uploadedFile" type="file" size="50" accept="application/pdf" />
我有这个ajax:
$("#submit").click(function() {
$.ajax({
type: "POST",
url: "submit.php",
data: $("form").serialize(),
success: function(result){
alert(result);
});
return false;
});
如何将文件数据传递给 submit.php 并使用 submit.php 中的代码上传。谢谢。