输入文件类型验证消息未显示

时间:2014-03-10 06:43:16

标签: jquery validation input

我的表单中有一个文件上传字段,我正在使用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"
        }
    }
  });

任何人都可以帮助我。

0 个答案:

没有答案