我有驗證輸入文件,但我有一個問題,當一個規則只與required
規則的工作,而不是與accept
規則和filesize
規則,在這裏我的代碼jQuery的輸入文件驗證
$('#myform').validate({
rules: { image: { required: true, accept: "bmp", filesize: 1048576 }},
messages: { image:{ required: "insert image", accept: "must in jpg,png and bimp format", filesize: "less than 1MB" }}
});
當我不插圖像的驗證工作,會出現一個消息錯誤,但是當我在bmp
格式或圖像大小1MB以上未插入圖像驗證是不行的
請幫助我..
感謝..
看看:HTTP:// adamsanderson.github.io/jQuery-File-Validator/ –