您好,登錄后才能下訂單哦!
這篇文章主要介紹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如何實現多文件上傳”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。