中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

准格尔旗| 哈密市| 庆阳市| 肇州县| 盱眙县| 河东区| 英吉沙县| 那曲县| 佛山市| 甘南县| 双柏县| 乐陵市| 辰溪县| 靖边县| 柳河县| 古蔺县| 太白县| 巍山| 桦南县| 宿州市| 洞口县| 同仁县| 东丰县| 青浦区| 塔河县| 西乌珠穆沁旗| 阿克苏市| 淮滨县| 宜阳县| 虎林市| 黄山市| 司法| 农安县| 沾益县| 赤壁市| 潮安县| 宜君县| 陇南市| 苍山县| 正宁县| 随州市|