jQuery validate使用

jQuery Validate

  1. $("#form-add").validate({
  2. rules:{
  3. name:{
  4. required:true,
  5. minlength: 2,
  6. maxlength: 20,
  7. remote: {
  8. url: rootPath + "/CourseController/checkNameUnique",
  9. type: "post",
  10. dataType: "json",
  11. dataFilter: function(data, type) {
  12. if (data == "0")
  13. return true;
  14. else
  15. return false;
  16. }
  17. }
  18. },
  19. price:{
  20. required:true,
  21. number:true
  22. },
  23. fileName:{
  24. required:true,
  25. maxlength:20
  26. }
  27. },
  28. messages: {
  29. "name": {
  30. remote: "已经存在"
  31. }
  32. },
  33. submitHandler:function(form){
  34. add();
  35. }
  36. });