参考:http://www.runoob.com/jquery/jquery-plugin-validate.html
http://www.cnblogs.com/artech/archive/2012/06/17/client-validation-01.html
引用文件:
<script type="text/javascript" src="~/Scripts/jquery-1.9.1.min.js"></script>
<script src="~/Scripts/jquery.validate.min.js"></script>
Jquery代码:
$(document).ready(function () { $("form").validate(); });
Html代码:
@using (Html.BeginForm("AddSave", "ArticlesInfo", FormMethod.Post, new { enctype = "multipart/form-data", id = "form1" })) { <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td style="width: 100px">标题</td> <td> @Html.TextBoxFor(model => model.Title, new { @class = "boxtext required" }) </td> </tr> <tr> <td style="width: 100px">配图</td> <td> <input type="file" name="Img" class="boxtext required" /> </td> </tr> <tr> <td style="width: 100px">内容</td> <td> @Html.TextAreaFor(model => model.Contents, new { cols = "50", rows = "20", sign = "Contents", @class= "required" }) </td> </tr> <tr> <td> </td> <td> <input type="submit" value="保存" class="boxbut" /> </td> </tr> </table> }
自定义规则和错误消息
$(document).ready(function () { $("form").validate({ rules: { Title: { required: true }, Img: { required: true } }, messages: { Title: { required: "请输入标题" }, Img: { required: "请选择图片" } } }); });
默认校验规则:
序号 | 规则 | 描述 |
---|---|---|
1 | required:true | 必须输入的字段。 |
2 | remote:"check.php" | 使用 ajax 方法调用 check.php 验证输入值。 |
3 | email:true | 必须输入正确格式的电子邮件。 |
4 | url:true | 必须输入正确格式的网址。 |
5 | date:true | 必须输入正确格式的日期。日期校验 ie6 出错,慎用。 |
6 | dateISO:true | 必须输入正确格式的日期(ISO),例如:2009-06-23,1998/01/22。只验证格式,不验证有效性。 |
7 | number:true | 必须输入合法的数字(负数,小数)。 |
8 | digits:true | 必须输入整数。 |
9 | creditcard: | 必须输入合法的信用卡号。 |
10 | equalTo:"#field" | 输入值必须和 #field 相同。 |
11 | accept: | 输入拥有合法后缀名的字符串(上传文件的后缀)。 |
12 | maxlength:5 | 输入长度最多是 5 的字符串(汉字算一个字符)。 |
13 | minlength:10 | 输入长度最小是 10 的字符串(汉字算一个字符)。 |
14 | rangelength:[5,10] | 输入长度必须介于 5 和 10 之间的字符串(汉字算一个字符)。 |
15 | range:[5,10] | 输入值必须介于 5 和 10 之间。 |
16 | max:5 | 输入值不能大于 5。 |
17 | min:10 | 输入值不能小于 10。 |
时间: 2024-10-12 19:40:10