我使用Bootstrap驗證器(Validator plugin)來驗證我的表單,但我有一個文件輸入,我希望對文件類型和文件大小進行自定義驗證(pdf ,DOCX,DOC ..)。如何使用Bootstrap驗證器來驗證文件大小和文件類型
<div class="form-group">
<div class="input-group">
<label class="input-group-btn">
<span class="btn btn-primary">
Browse… <input type="file" style="display: none;" name="cv" required data-filesize="5242880" data-filesize-error="Max 5MB">
</span>
</label>
<div class="help-block with-errors"></div>
<input type="text" class="form-control" readonly>
</div>
</div>
我需要在後端運行其自己的驗證之前,我應該如何使用這個插件,以驗證我的前端輸入一些方向。
你給的鏈接斷開 – Ish
@Ish固定它。謝謝! – Daniel
@Daniel我切換到[這個插件](http://parsleyjs.org),對我來說它更合適。如果你喜歡,這裏是一個自定義驗證的例子:http://parsleyjs.org/doc/examples/customvalidator.html – Victor