1. 程式人生 > >將input file的選擇的檔案清空

將input file的選擇的檔案清空

上傳檔案時,選擇了檔案後想清空檔案路徑,搜尋了一下,用兩種方法解決

    <input type="file" id="fileupload" name="file" />  

第一種:
    var obj = document.getElementById('fileupload') ;  
    obj.select();  
    document.selection.clear();  

第二種:
    var obj = document.getElementById('fileupload') ;  
    obj.outerHTML=obj.outerHTML;