本文介绍了如何检查输入类型=“文件"?是否有文件或不使用jQuery?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的页面中有一个文件上传控件<input id="File1" type="file" />
...如何通过单击按钮upload
来检查输入type ="file"是否存在文件?
I have a file upload control <input id="File1" type="file" />
in my page... How to check an input type="file" has a file or not using jquery on click of a button upload
?
推荐答案
if (jQuery('#File1').val()) { /* There are files */ }
这篇关于如何检查输入类型=“文件"?是否有文件或不使用jQuery?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!