91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JS如何實現多文件上傳

發布時間:2021-07-20 14:48:32 來源:億速云 閱讀:1044 作者:小新 欄目:web開發

這篇文章主要介紹JS如何實現多文件上傳,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體實現代碼如下所示:

<!DOCTYPE html>
<html>
<head lang="en">
 <meta charset="UTF-8">
 <title></title>
 <script src="./jquery-1.9.1.min.js"></script>
</head>
<body>
<form id= "uploadForm" action= "" method= "post" enctype ="multipart/form-data">
 <h2 >多文件上傳 </h2>
 <table>
  <tr>
   <td >上傳文件: <input type ="file" name="file[]" id="file" multiple="multiple"/><a href="javascript:;" id="add">[+]</a></td>
  </tr>
  <tr>
   <td>
    <input type ="button" value="上傳" id="but"/>
   </td>
  </tr>
 </table>
</form>
</body>
</html>
<script>
 //添加
 $(document).on("click","#add",function(){
  var str_tr = "<tr>"+$(this).parents("tr").html()+"</tr>";
  //js 替換字符串樣式
  str_tr = str_tr.replace(/\+/,'-');
  var new_str_tr = str_tr.replace(/add/,'del');
  $(this).parents("tr").after(new_str_tr);
 })
 //刪除
 $(document).on("click","#del",function(){
  $(this).parents("tr").remove();
 })
 //文件上傳
 $("#but").click(function(){
  var formData = new FormData($( "#uploadForm" )[0]);
  $.ajax({
   url: 'http://localhost/demo/selfWork_MVC/easymvc/app/Views/Index/upload.php' ,
   type: 'POST',
   data: formData,
   async: false,
   cache: false,
   contentType: false,
   processData: false,
   success: function (returndata) {
    alert(returndata);
   },
   error: function (returndata) {
    alert(returndata);
   }
  });
 })
</script>

以上是“JS如何實現多文件上傳”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

js
AI

若尔盖县| 新民市| 兴山县| 合川市| 那曲县| 庆阳市| 延津县| 霍山县| 西城区| 英德市| 海盐县| 琼结县| 石家庄市| 宣威市| 苏尼特左旗| 平凉市| 梅州市| 桐城市| 祁东县| 遂宁市| 拜城县| 西宁市| 连南| 丹东市| 抚顺市| 政和县| 拜泉县| 宿迁市| 宁夏| 湘西| 碌曲县| 琼结县| 蓝山县| 闽清县| 盐城市| 沙湾县| 梅州市| 延庆县| 浏阳市| 五家渠市| 新蔡县|