首页 > 开发 > AJAX > 正文

自己编写的支持Ajax验证的JS表单验证插件

2024-09-01 08:33:01
字体:
来源:转载
供稿:网友

创建一个JavaScript表单验证插件,可以说是一个繁琐的过程,涉及到初期设计、开发与测试等等环节。实际上一个优秀的程序员不仅是技术高手,也应该是善假于外物的。本文介绍的这个不错的JavaScript表单验证插件,支持ajax验证,有需要的小伙伴可以参考下

自己编写了一个表单验证插件,支持ajax验证,使用起来很简单。

每个需要验证的表单元素下面有一个span标签,这个标签的class有一个valid表示需要验证,如果有nullable则表示可为空;rule表示验证规则,msg表示错误提示信息;to表示要验证的元素的name值,如果元素是单个的,to可以不写。该插件会遍历每个有valid的span标签,找出它前面需要验证的元素,根据rule验证,如果验证不通过,则显示边框为红色,鼠标放在元素上时显示错误信息。

验证时机:1、点击提交按钮时显式调用验证方法;2、当元素触发blur时验证。

插件代码:

CSS:

 

 
  1. .failvalid 
  2. border: solid 2px red !important; 

JS:

 

 
  1. /** 
  2. * suxiang 
  3. * 2014年12月22日 
  4. * 验证插件 
  5. */ 
  6.  
  7. SimpoValidate = { 
  8. //验证规则 
  9. rules: { 
  10. int: /^[1-9]/d*$/, 
  11. number: /^[+-]?/d*/.?/d+$/ 
  12. }, 
  13.  
  14. //初始化 
  15. init: function () { 
  16. $(".valid").each(function () { //遍历span 
  17. if ($(this)[0].tagName.toLowerCase() == "span") { 
  18. var validSpan = $(this); 
  19. var to = validSpan.attr("to"); 
  20. var target; 
  21. if (to) { 
  22. target = $("input[name='" + to + "'],select[name='" + to + "'],textarea[name='" + to + "']"); 
  23. else { 
  24. var target = validSpan.prev(); 
  25. if (target) { 
  26. target.blur(function () { 
  27. SimpoValidate.validOne(target, validSpan); 
  28. }); 
  29. }); 
  30. }, 
  31.  
  32. //验证全部,验证成功返回true 
  33. valid: function () { 
  34. SimpoValidate.ajaxCheckResult = true
  35. var bl = true
  36.  
  37. $(".valid").each(function () { //遍历span 
  38. if ($(this)[0].tagName.toLowerCase() == "span") { 
  39. var validSpan = $(this); 
  40. var to = validSpan.attr("to"); 
  41. var target; 
  42. if (to) { 
  43. target = $("input[name='" + to + "'],select[name='" + to + "'],textarea[name='" + to + "']"); 
  44. else { 
  45. target = validSpan.prev(); 
  46. if (target) { 
  47. if (!SimpoValidate.validOne(target, validSpan)) { 
  48. bl = false
  49. }); 
  50.  
  51. return bl && SimpoValidate.ajaxCheckResult; 
  52. }, 
  53.  
  54. //单个验证,验证成功返回true 
  55. validOne: function (target, validSpan) { 
  56. SimpoValidate.removehilight(target, msg); 
  57.  
  58. var rule = SimpoValidate.getRule(validSpan); 
  59. var msg = validSpan.attr("msg"); 
  60. var nullable = validSpan.attr("class").indexOf("nullable") == -1 ? false : true//是否可为空 
  61. var to = validSpan.attr("to"); 
  62. var ajaxAction = validSpan.attr("ajaxAction"); 
  63.  
  64. if (target) { 
  65. //checkbox或radio 
  66. if (target[0].tagName.toLowerCase() == "input" && target.attr("type") && (target.attr("type").toLowerCase() == "checkbox" || target.attr("type").toLowerCase() == "radio")) { 
  67. var checkedInput = $("input[name='" + to + "']:checked"); 
  68. if (!nullable) { 
  69. if (checkedInput.length == 0) { 
  70. SimpoValidate.hilight(target, msg); 
  71. return false
  72.  
  73. //input或select 
  74. if (target[0].tagName.toLowerCase() == "input" || target[0].tagName.toLowerCase() == "select") { 
  75. var val = target.val(); 
  76. if (!nullable) { 
  77. if ($.trim(val) == "") { 
  78. SimpoValidate.hilight(target, msg); 
  79. return false
  80. else { 
  81. if ($.trim(val) == "") { 
  82. SimpoValidate.removehilight(target, msg); 
  83. return true
  84.  
  85. if (rule) { 
  86. var reg = new RegExp(rule); 
  87. if (!reg.test(val)) { 
  88. SimpoValidate.hilight(target, msg); 
  89. return false
  90.  
  91. if (ajaxAction) { 
  92. SimpoValidate.ajaxCheck(target, val, ajaxAction); 
  93. else if (target[0].tagName.toLowerCase() == "textarea") { 
  94. var val = target.text(); 
  95. if (!nullable) { 
  96. if ($.trim(val) == "") { 
  97. SimpoValidate.hilight(target, msg); 
  98. return false
  99. else { 
  100. if ($.trim(val) == "") { 
  101. SimpoValidate.removehilight(target, msg); 
  102. return true
  103.  
  104. if (rule) { 
  105. var reg = new RegExp(rule); 
  106. if (!reg.test(val)) { 
  107. SimpoValidate.hilight(target, msg); 
  108. return false
  109.  
  110. if (ajaxAction) { 
  111. SimpoValidate.ajaxCheck(target, val, ajaxAction); 
  112.  
  113. return true
  114. }, 
  115.  
  116. ajaxCheckResult: true
  117.  
  118. ajaxCheck: function (target, value, ajaxAction) { 
  119. var targetName = target.attr("name"); 
  120. var data = new Object(); 
  121. data[targetName] = value; 
  122.  
  123. $.ajax({ 
  124. url: ajaxAction, 
  125. type: "POST"
  126. data: data, 
  127. async: false
  128. success: function (data) { 
  129. if (data.data == true) { 
  130. SimpoValidate.removehilight(target); 
  131. else { 
  132. SimpoValidate.ajaxCheckResult = false
  133. SimpoValidate.hilight(target, data.data); 
  134. }); 
  135. }, 
  136.  
  137. //获取验证规则 
  138. getRule: function (validSpan) { 
  139. var rule = validSpan.attr("rule"); 
  140. switch ($.trim(rule)) { 
  141. case "int"
  142. return this.rules.int
  143. case "number"
  144. return this.rules.number; 
  145. default
  146. return rule; 
  147. break
  148. }, 
  149.  
  150. //红边框及错误提示 
  151. hilight: function (target, msg) { 
  152. target.addClass("failvalid"); 
  153. target.bind("mouseover"function (e) { 
  154. SimpoValidate.tips(target, msg, e); 
  155. }); 
  156. target.bind("mouseout"function () { 
  157. SimpoValidate.removetips(); 
  158. }); 
  159. }, 
  160.  
  161. //取消红边框及错误提示 
  162. removehilight: function (target) { 
  163. target.unbind("mouseover"); 
  164. target.unbind("mouseout"); 
  165. target.removeClass("failvalid"); 
  166. SimpoValidate.removetips(); 
  167. }, 
  168.  
  169. //显示提示 
  170. tips: function (target, text, e) { 
  171. var divtipsstyle = "position: absolute; z-index:99999; left: 0; top: 0; background-color: #dceaf2; padding: 3px; border: solid 1px #6dbde4; visibility: hidden; line-height:20px; font-size:12px;"
  172. $("body").append("<div class='div-tips' style='" + divtipsstyle + "'>" + text + "</div>"); 
  173.  
  174. var divtips = $(".div-tips"); 
  175. divtips.css("visibility""visible"); 
  176.  
  177. var top = e.clientY + $(window).scrollTop() - divtips.height() - 18; 
  178. var left = e.clientX; 
  179. divtips.css("top", top); 
  180. divtips.css("left", left); 
  181.  
  182. $(target).mousemove(function (e) { 
  183. var top = e.clientY + $(window).scrollTop() - divtips.height() - 18; 
  184. var left = e.clientX; 
  185. divtips.css("top", top); 
  186. divtips.css("left", left); 
  187. }); 
  188. }, 
  189.  
  190. //移除提示 
  191. removetips: function () { 
  192. $(".div-tips").remove(); 
  193. }; 
  194.  
  195. $(function () { 
  196. SimpoValidate.init(); 
  197. }); 

如何使用:

Edit页面:

 

 
  1. @using Model.Suya; 
  2. @{ 
  3. ViewBag.Title = "Add"
  4. Layout = "~/Views/Shared/_Layout.cshtml"
  5. @{ 
  6. List<sys_post> postList = (List<sys_post>)ViewData["postList"]; 
  7. sys_post post = (sys_post)ViewData["post"]; 
  8. <script type="text/javascript"
  9. $(function () { 
  10. //部门树 
  11. $('#dept').combotree({ 
  12. url: 'GetDeptTree'
  13. required: false
  14. checkbox: true
  15. onLoadSuccess: function () { 
  16. $('#dept').combotree('setValue'"@(post.depCode)"); 
  17. }); 
  18.  
  19. //操作结果 
  20. $("#ifrm").load(function (data) { 
  21. var data = eval("(" + $("#ifrm").contents().find("body").html() + ")"); 
  22. alert(data.msg); 
  23. if (data.ok) back(); 
  24. }); 
  25.  
  26. $("select[name='postLevel']").find("option[value='@(post.postLevel)']").attr("selected""selected"); 
  27. }); 
  28.  
  29. //保存 
  30. function save() { 
  31. if (valid()) { 
  32. $("#frm").submit(); 
  33.  
  34. //验证 
  35. function valid() { 
  36. var dept = $("input[name='dept']"); 
  37. if (!dept.val()) { 
  38. SimpoValidate.hilight(dept.parent(), "请选择所属部门"); 
  39. else { 
  40. SimpoValidate.removehilight(dept.parent()); 
  41.  
  42. return SimpoValidate.valid(); 
  43.  
  44. //返回 
  45. function back() { 
  46. parent.$('#ttTab').tabs('select'"岗位管理"); 
  47. var tab = parent.$('#ttTab').tabs('getSelected'); 
  48. tab.find("iframe").contents().find("#btnSearch").click(); 
  49. parent.$("#ttTab").tabs('close''修改岗位信息'); 
  50. </script> 
  51. <div class="tiao"
  52. <input type="button" class="submit_btn" value="保存" onclick="save()" /> 
  53. <input type="button" class="submit_btn" value="返回" onclick="back()" /> 
  54. </div> 
  55. <iframe id="ifrm" name="ifrm" style="display: none;"></iframe> 
  56. <form id="frm" method="post" enctype="multipart/form-data" action="/HR/PostManage/SaveEdit?id=@(post.id)" 
  57. target="ifrm"
  58. <div class="adminMainContent"
  59. <div class="box"
  60. <div class="box-title"
  61. 基础信息 
  62. </div> 
  63. <div class="box-content"
  64. <table cellpadding="0" cellspacing="0" class="detail" width="100%"
  65. <tr> 
  66. <td class="title"
  67. <span class="mst">*</span>岗位名称: 
  68. </td> 
  69. <td style="width: 35%;"
  70. <input type="text" class="xinxi_txt" name="postName" value="@post.postName" /> 
  71. <span class="valid" msg="必填,且长度不能超过50" rule="^(.|/n){0,50}$"></span> 
  72. </td> 
  73. <td class="title"
  74. <span class="mst">*</span>岗位编号: 
  75. </td> 
  76. <td style="width: 35%;"
  77. <input type="text" class="xinxi_txt" name="postCode" value="@post.postCode" /> 
  78. <span class="valid" msg="必填,且长度不能超过20" rule="^(.|/n){0,20}$" ajaxaction="/HR/PostManage/AjaxCheckPostCode?id=@post.id"
  79. </span> 
  80. </td> 
  81. </tr> 
  82. <tr> 
  83. <td class="title"
  84. <span class="mst">*</span> 所属部门: 
  85. </td> 
  86. <td style="width: 35%;"
  87. <input type="text" name="depCode" id="dept" class="easyui-combotree" style="height: 30px;" /> 
  88. </td> 
  89. <td class="title"
  90. <span class="mst">*</span>汇报对象: 
  91. </td> 
  92. <td style="width: 35%;"
  93. <select class="xueli" name="reportPostCode" id="agreementType"
  94. <option value="" selected="selected">==请选择==</option> 
  95. @foreach (sys_post item in postList) 
  96. if (item.postCode == post.reportPostCode) 
  97. <option value="@item.postCode" selected="selected">@item.postName</option> 
  98. else 
  99. <option value="@item.postCode">@item.postName</option> 
  100. </select> 
  101. <span class="valid" msg="请选择合同分类"
  102. </td> 
  103. </tr> 
  104. <tr> 
  105. <td class="title"
  106. <span class="mst">*</span>岗位级别: 
  107. </td> 
  108. <td style="width: 35%;"
  109. <select class="xueli" name="postLevel"
  110. <option value="" selected="selected">==请选择==</option> 
  111. <option value="1">1</option> 
  112. <option value="2">2</option> 
  113. <option value="3">3</option> 
  114. <option value="4">4</option> 
  115. <option value="5">5</option> 
  116. <option value="6">6</option> 
  117. </select> 
  118. <span class="valid" msg="请选择岗位级别"
  119. </td> 
  120. <td class="title"
  121. </td> 
  122. <td style="width: 35%;"
  123. </td> 
  124. </tr> 
  125. <tr> 
  126. <td class="title"
  127. <span class="mst">*</span>备注: 
  128. </td> 
  129. <td colspan="3" style="width: 35%;"
  130. <textarea name="remarks" style="width: 500px;">@post.remarks</textarea> 
  131. <span class="valid" msg="长度不得超过500" rule="^(.|/n){0,500}$"></span> 
  132. </td> 
  133. </tr> 
  134. </table> 
  135. </div> 
  136. </div> 
  137. </div> 
  138. </form> 

效果图:

自己编写的支持Ajax验证的JS表单验证插件

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表