现在的位置: 首页 > 综合 > 正文

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

2017年12月26日 ⁄ 综合 ⁄ 共 281字 ⁄ 字号 评论关闭

<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> 

抱歉!评论已关闭.