上传文件取消后保留上次文件
<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>
上传文件取消后保留上次文件

浙公网安备 33010602011771号