input(file)异步上传文件
2021-07-07 15:05
阅读:434
//异步上传文件
var $file = $(‘#file‘);
$(‘#btn‘).click(function() {
var data = new FormData();
data.append(‘file‘, $file[0].files[0]);
data.append(‘foo‘, ‘bar‘);var xhr = new XMLHttpRequest();
xhr.open(‘post‘, ‘/upload(上传请求地址)‘);
xhr.onload = function(e) {
alert(e.currentTarget.response);
//console.log(e.currentTarget.response);
}
xhr.send(data);
});
注意:一般情况下 通过form标单 中加上 enctype="multipart/form-data" 即可,上述为input(file)特殊情况上传文件
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:input(file)异步上传文件
文章链接:http://soscw.com/index.php/essay/102173.html
文章标题:input(file)异步上传文件
文章链接:http://soscw.com/index.php/essay/102173.html
评论
亲,登录后才可以留言!