我在下面使用这个html:
<input name="t1" class="imgupload" type="file" accept="image/*" capture="camera">
<input type="submit" class="submit" value="Upload">
我试图弄清楚如何有一些警报();显示输入 type="file" 何时为空
$(document).on('click', '.submit', function(e) {
var check = $(".imgupload").val();
if(check == 'undefined'){
alert();
}
});