<!DOCTYPE html>
<html
<head>
<title></title>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
</head
<body>
<form id="tf">
<input type="file" name="file" />
<input type="text" name="username" />
<input type="button" value="提交" onclick="test();" />
</form>
<script type="text/javascript">
function test() {
var form = new FormData(document.getElementById("tf"));
$.ajax({
url: "url",
type: "post",
data: form,
processData: false,
contentType: false,
success: function(data) {
console.log(data);
},
error: function(e) {
console.log(e);
}
});
}
</script>
</body
</html>