我有这段代码,想要添加文件验证,必填,文件类型和大小。
undefined
我正在使用代码(来自引导网站)进行验证
<form id="order-form" class="needs-validation" action="src/postform.php" method="post" enctype="multipart/form-data" novalidate>
<!-- a lot of text fields with working validation and "required" in the tag -->
<div class="custom-file mb-4">
<input type="file" class="custom-file-input" id="customFile" name="myfile" required>
<label id="selected-file" class="custom-file-label" for="customFile">Choose file</label>
</div>
我该如何验证文件上传,为什么上面的示例使用纯JavaScript(引导程序的其余部分是jQuery)。如何通过文件上传验证将以上内容转换为jQuery?