jQuery验证文档



我尝试使用jQuery验证插件来验证.docx文件上传。

$("#my_form").validate({
  rules: {
    upload1: { required: true, accept: "docx"},
    upload2: { required: true, accept: "application/vnd.openxmlformats-officedocument.wordprocessingml.document"},
  }
);

然而,这两条规则都不起作用。属性accept的值应该是多少?

为了测试文件的扩展名,您需要使用此处文档中提到的规则extension

例如:

$('#commentForm').validate({
    rules: {
        file: {
            required: true,
            extension: 'docx'
        }
    }
});

演示:fiddle

相关内容

  • 没有找到相关文章

最新更新