将input file的选择的文件清空的两种解决方案

 

上传文件时,选择了文件后想清空文件路径,搜索了一下,用两种方法解决 

第一种

var obj = document.getElementById('fileupload') ; 
obj.select(); 
document.selection.clear(); 

第二种

var obj = document.getElementById('fileupload') ; 
obj.outerHTML=obj.outerHTML; 

喜欢就拿走,拿走拿走别客气!!!!

你可能感兴趣的:(jsp,HTML,jquery,前端)