我的表单中有一个文件上传字段,我正在使用jquery验证来验证该字段,如下所示:
我的输入标记:
<input type="file" id="photo" name="photo" />
验证:
$('#create_teacher').validate({
rules: {
photo:{
required: true,
extension: "jpeg,jpg,gif,png"
},
},
messages: {
photo: { // <- this refers to the NAME attribute, NOT id.
required: "this field is mandatory",
extension: "accepts jpeg, jpg, gif or png"
}
}
});
任何人都可以帮助我。