2015-02-24 180 views

回答

1

您可以確定是否其空通過檢查文件的長度:

if(document.getElementById("field_1").files.length == 0){ 
    console.log("no files selected"); 
} 
+0

謝謝!這對我有幫助) – nowiko 2015-02-24 14:30:17

+0

沒問題,樂於幫忙! – cch 2015-02-24 14:31:02

0

你可以嘗試這樣的

$('#field_1').change(function() { 
    console.log(this.files[0] instanceof File); 
});