输入[类型=文件]验证
如何检查输入文件是否不为空?
我尝试过:
$('#image-file').click(function() {
if ( ! $('#image-file').val() ) {
alert('Chose a file!');
return false;
}
});
但没有成功。
how can I check if the input file is not empty?
I tried:
$('#image-file').click(function() {
if ( ! $('#image-file').val() ) {
alert('Chose a file!');
return false;
}
});
but it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
click
事件在设置值之前被触发。而是在change
事件期间检查它。或者,更好的是,在提交表单期间,因为当用户未选择任何内容且字段本身已为空时,不会触发
change
。The
click
event is fired before the value is been set. Rather check it duringchange
event.Or, better, during submitting of the form, because the
change
won't be fired when the user selected nothing and the field itself was already empty.