这里我们举例校验ListBox两个规则: •校验必选项 •选择范围在0~4项 界面代码: 复制代码 代码如下: 请选择汽车类型: 脚本代码: 复制代码 代码如下: Recipe17 <BR>$(function () { <BR>$("#form1").validate({ <BR>rules: { <BR>lstCar: { required: true, rangelength: [0, 4] } <BR>}, <BR>messages: { <BR>lstCar: { required: "至少选择一种车!", <BR>rangelength: "选择的范围为零到四种车!" <BR>} <BR>}, <BR>errorLabelContainer: $("#message") <BR>}); <BR>}); <BR> <BR>.alertmsg <BR>{ <BR>color: #FF0000; <BR>} <BR> 界面效果: