我的博客

JavaScript XMLHttpRequest ajax 实现 表单数据上传

目录
1
2
3
4
5
6
7
8
9
10
11
var xhr = new XMLHttpRequest();
xhr.open("POST", url, true); // true 代表异步
var formData = new FormData(uploadForm);
xhr.send(formData);

xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
var result = xhr.responseText;
console.log(result);
}
}

评论无需登录,可以匿名,欢迎评论!