使用 jQuery 实现文件上传
2022/5/2 23:16:06
本文主要是介绍使用 jQuery 实现文件上传,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="js/jquery-3.6.0.js"></script> </head> <body> <input type="file" id="file1"> <button id="btnUpload">上传文件</button> <br> <img src="img/loading.gif" alt="" style="display: none;" id="loading"> <script> $(function () { // 监听到 Ajax 请求被发起了 $(document).ajaxStart(function () { $('#loading').show() }) // 监听到 Ajax 完成的事件 $(document).ajaxStop(function () { $('#loading').hide() }) $('#btnUpload').on('click', function () { // 核心代码 let files = $('#file1')[0].files if (files.length <= 0) { return alert('请选择文件后再上传!') } let fd = new FormData() fd.append('avatar', files[0]) // 发起 jQuery 的 Ajax 请求, 上传文件 $.ajax({ method: 'POST', url: 'http://www.liulongbin.top:3006/api/upload/avatar', data: fd, // 重要 processData: false, contentType: false, success: function (res) { console.log(res); } }) }) }) </script> </body> </html>
这篇关于使用 jQuery 实现文件上传的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-03-06jquery对css样式(jquery中的css方法)-icode9专业技术文章分享
- 2023-05-27JQuery的认识和安装
- 2023-01-06JQuery应用技巧:如何定义 HTML 模板并使用 JQuery 进行加载-icode9专业技术文章分享
- 2022-09-29复习-jQuery
- 2022-09-04Python3项目初始化10-->前端基础jquery、ajax,sweetalert--更新用户改造
- 2022-08-30day 27 jquery
- 2022-08-29jQuery筛选器,bootstrap
- 2022-08-20JQuery事件绑定
- 2022-08-20JQuery案例
- 2022-08-07关于jQuery的学习