jquery如何判断 input type="file"上传文件是否为空
程序员文章站
2022-03-23 20:57:13
...
jquery判断 input type="file"上传文件是否为空的方法:使用html上传按钮,代码为【<button type="button" onclick="submitXML()">提交</button>】。
本教程操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑,该方法适用于所有品牌电脑。
推荐:jquery视频教程
jquery判断 input type="file"上传文件是否为空的方法:
要想获取type="file"
的input内容,用var file = $("id").val();
肯定是不行的,下面是代码:
html上传按钮为:
<input type="file" id="reportXML" name="reportXML" title="输入内容" multiple="multiple"> <button type="button" onclick="submitXML()">提交</button>
js代码:
function submitXML(){ var fileInput = $('#reportXML').get(0).files[0]; console.info(fileInput); if(fileInput){ $("#reportXMLform").submit(); }else{ alert("请选择上传文件!"); } }
相关免费学习推荐:js视频教程
以上就是jquery如何判断 input type="file"上传文件是否为空的详细内容,更多请关注其它相关文章!
上一篇: react组件树是什么