企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
``` <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title></title> <style> input { display: none; } </style> </head> <body> <p>请一致上传同一张图片</p> <div> <label>没有清空得(点击上传)<input type="file" id="file" accept="image/*"> </label> <br> <br> <br> <br> <label>清空上传(点击上传)<input type="file" id="file2" accept="image/*"> </label> <script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script> <script> $(function () { $('#file2').change(function () { alert(this.files[0].name) $(this).val('') }) $('#file').change(function () { alert(this.files[0].name) }) }) </script> </div> </body> </html> ```