JS 清空input file的值,兼容所有主流浏览器

来源:互联网 发布:阁和楼的区别 知乎 编辑:程序博客网 时间:2024/06/06 15:45



<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">var $file;$(document).ready(function(){  $(":file").live("change",function(){  this.outerHTML += '';   this.value ="";  });});</script></head><body><input type="file" id="file"/></body></html> 


原创粉丝点击