上传文件取消后保留上次文件
作者:互联网
<span id="filespan"></span> <input type="file" id="file" name=""> <script src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.5.1.min.js"></script> <script type="text/javascript"> var fileClone; $("#file").click(function () { fileClone = $("#file").clone(true); }) $("#file").change(function (e) { let fileList=$("#file")[0].files[0]; if (typeof fileList == 'undefined'){ $("#file").remove(); $("#filespan").after(fileClone); } }); </script>
上传文件取消后保留上次文件
标签:function,文件,fileClone,fileList,file,上传,上次 来源: https://www.cnblogs.com/cnwp007/p/16355685.html