主頁 > 知識(shí)庫 > jquery ajax實(shí)現(xiàn)文件上傳功能實(shí)例代碼

jquery ajax實(shí)現(xiàn)文件上傳功能實(shí)例代碼

熱門標(biāo)簽:大學(xué)校門地圖標(biāo)注 荊州智能電銷機(jī)器人 提高電話機(jī)器人接通率 福建微碼電話機(jī)器人 廣西智能外呼系統(tǒng)多少錢 平?jīng)龈叩碌貓D標(biāo)注商戶要收費(fèi)嗎 銷售電銷機(jī)器人詐騙 外呼系統(tǒng)api對(duì)接 地圖標(biāo)注與公司業(yè)務(wù)關(guān)系

下面看下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

標(biāo)簽:海南 婁底 內(nèi)江 黔東 衡陽 樂山 德陽 邯鄲

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jquery ajax實(shí)現(xiàn)文件上傳功能實(shí)例代碼》,本文關(guān)鍵詞  jquery,ajax,實(shí)現(xiàn),文件,上傳,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jquery ajax實(shí)現(xiàn)文件上傳功能實(shí)例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于jquery ajax實(shí)現(xiàn)文件上傳功能實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章