下面看下ajax實(shí)現(xiàn)文件上傳
沒有使用插件
一、單文件上傳
!DOCTYPE html>
html>
head lang="en">
meta charset="UTF-8">
script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">/script>
title>/title>
/head>
body>
form id="uploadForm" enctype="multipart/form-data">
文件:input id="file" type="file" name="file"/>
/form>
button id="upload">上傳文件/button>
/body>
script type="text/javascript">
$(function () {
$("#upload").click(function () {
var formData = new FormData($('#uploadForm')[0]);
$.ajax({
type: 'post',
url: "http://192.168.1.101:8080/springbootdemo/file/upload",
data: formData,
cache: false,
processData: false,
contentType: false,
}).success(function (data) {
alert(data);
}).error(function () {
alert("上傳失敗");
});
});
});
/script>
/html>
二、多文件上傳
!DOCTYPE html>
html>
head lang="en">
meta charset="UTF-8">
script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">/script>
title>/title>
/head>
body>
form id="uploadForm" enctype="multipart/form-data">
文件:input type="file" name="file" multiple="multiple"/>br>
/form>
button id="upload">上傳文件/button>
/body>
script type="text/javascript">
$(function () {
$("#upload").click(function () {
var formData = new FormData($('#uploadForm')[0]);
$.ajax({
type: 'post',
url: "http://192.168.1.101:8080/springbootdemo/file/uploadFiles",
data: formData,
cache: false,
processData: false,
contentType: false,
}).success(function (data) {
alert(data);
}).error(function () {
alert("上傳失敗");
});
});
});
/script>
/html>
這個(gè)是多選上傳,關(guān)鍵是multiple="multiple
"這個(gè)屬性,另外使用的接口也是多文件上傳的接口。
當(dāng)然也可以使用單文件上傳的模式,多次選擇就可以了,只不過接口也是iyaoshiyong多文件上傳的接口。
!DOCTYPE html>
html>
head lang="en">
meta charset="UTF-8">
script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">/script>
title>/title>
/head>
body>
form id="uploadForm" enctype="multipart/form-data">
文件:input type="file" name="file"/>br>
文件:input type="file" name="file"/>br>
文件:input type="file" name="file"/>br>
/form>
button id="upload">上傳文件/button>
/body>
script type="text/javascript">
$(function () {
$("#upload").click(function () {
var formData = new FormData($('#uploadForm')[0]);
$.ajax({
type: 'post',
url: "http://192.168.1.101:8080/springbootdemo/file/uploadFiles",
data: formData,
cache: false,
processData: false,
contentType: false,
}).success(function (data) {
alert(data);
}).error(function () {
alert("上傳失敗");
});
});
});
/script>
/html>
測(cè)試都通過了?。?!
下面通過一段實(shí)例代碼給大家介紹ajax拖拽上傳功能的實(shí)現(xiàn),具體代碼如下;
AJAX拖拽上傳功能,實(shí)現(xiàn)代碼如下所示:
!DOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
meta name="viewport" content="width=device-width, initial-scale=1.0">
meta http-equiv="X-UA-Compatible" content="ie=edge">
title>Document/title>
style>
.box {
width: 300px;
height: 300px;
border: 1px solid #000;
text-align: center;
line-height: 300px;
font-size: 40px;
}
/style>
/head>
body>
div class="box">+/div>
script>
var box = document.querySelector('.box');
box.ondragover = function (e) {
e.preventDefault();
}
box.ondrop = function (e) {
console.log(e.dataTransfer)
e.preventDefault();
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 xhr.status == 200) {
console.log(xhr.responseText)
}
}
xhr.open('POST', './server.php', true);
var formdata = new FormData();
formdata.append('pic', e.dataTransfer.files[0]);
formdata.append('name', 'luyao');
xhr.send(formdata);
}
/script>
/body>
/html>
//server.php
?php
$rand = rand(1,1000).'.jpg';
move_uploaded_file($_FILES['pic']['tmp_name'], './uploads/'.$rand);
echo '/uploads/'.$rand;
總結(jié)
以上所述是小編給大家介紹的jquery ajax實(shí)現(xiàn)文件上傳功能實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
您可能感興趣的文章:- jQuery插件ajaxfileupload.js實(shí)現(xiàn)上傳文件
- JQuery插件ajaxfileupload.js異步上傳文件實(shí)例
- 一個(gè)簡(jiǎn)單的jQuery插件ajaxfileupload.js實(shí)現(xiàn)ajax上傳文件例子
- 分享20多個(gè)很棒的jQuery 文件上傳插件或教程
- jQuery Ajax文件上傳(php)
- jquery組件WebUploader文件上傳用法詳解
- jQuery File Upload文件上傳插件使用詳解
- 原生JS和jQuery版實(shí)現(xiàn)文件上傳功能
- jQuery用FormData實(shí)現(xiàn)文件上傳的方法
- jquery實(shí)現(xiàn)異步文件上傳ajaxfileupload.js