上午在做东西的时候需要清除file控件的value值,采用传统的处理方式(即直接将file控件的value值赋值为""),在FF和Chrome浏览器下都可以正常清除,但在IE下是无法清除的。
可通过以下方法清除:
<input type="file" id="fileUpload"/>
var ie = (navigator.appVersion.indexOf("MSIE")!=-1);//IE
if(ie){
$("#fileUpload").select();
document.execCommand("delete");
}else{
$("#fileUpload").val("");
}