手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >ASP.NET jQuery 实例15 通过控件CustomValidator验证CheckBoxList
ASP.NET jQuery 实例15 通过控件CustomValidator验证CheckBoxList
摘要:首先看下界面代码:复制代码代码如下:请选择汽车类型:控件CustomValidator相关参数说明:ErrorMessage:设置校验提示信...

首先看下界面代码:

复制代码 代码如下:

<form id="form1" runat="server">

<div align="center">

<fieldset>

<table border="0" cellpadding="3" cellspacing="3">

<tr>

<td>

请选择汽车类型:

</td>

</tr>

<tr>

<td>

<asp:CheckBoxList ID="chkCar" runat="server">

<asp:ListItem Value="1" Text="奔驰汽车"></asp:ListItem>

<asp:ListItem Value="2" Text="宝马汽车"></asp:ListItem>

<asp:ListItem Value="3" Text="奥迪汽车"></asp:ListItem>

<asp:ListItem Value="4" Text="现代汽车"></asp:ListItem>

<asp:ListItem Value="5" Text="丰田汽车"></asp:ListItem>

</asp:CheckBoxList>

</td>

</tr>

<tr>

<td>

<asp:Button ID="btnSubmit" runat="server" Text="提交" />

</td>

</tr>

</table>

</fieldset>

<asp:CustomValidator ID="ctvCar" runat="server" Display="Dynamic" ErrorMessage="至少选择三种车!"

ForeColor="Red" ClientValidationFunction="ctvCar_Validation"></asp:CustomValidator>

</div>

</form>

控件CustomValidator相关参数说明:

ErrorMessage:设置校验提示信息

Display:设置显示模式,Dynamic表示提示信息不显示的时候,不占用当前位置

ClientValidationFunction:设置定义客户端自定义校验函数

客户端脚本代码:

复制代码 代码如下:

<head id="Head1" runat="server">

<title>Recipe15</title>

<script type="text/javascript" src="Scripts/jquery-1.4.1-vsdoc.js"></script>

<script type="text/javascript">

function ctvCar_Validation(sender, args) {

// CustomValidator控件通过自定义函数的参数args属性IsValid来判断是否验证通过

args.IsValid = ($("#chkCar input:checked").length >= 3);

}

</script>

</head>

最终显示效果:

ASP.NET jQuery 实例15 通过控件CustomValidator验证CheckBoxList1

【ASP.NET jQuery 实例15 通过控件CustomValidator验证CheckBoxList】相关文章:

jQuery实现延迟跳转的方法

js+cookies实现悬浮购物车的方法

JavaScript中数组添加值和访问值常见问题

3张图片循环组和(很有动感)

AngularJS中$interval的用法详解

nodejs修复ipa处理过的png图片

JQuery插件jcarousellite的参数中文说明

AngularJS学习笔记之基本指令

js+css实现回到顶部按钮(back to top)

基于jquery实现下拉框美化特效

精品推荐
分类导航