參考:
http://liuna718-163-com.iteye.com/blog/1914769/*
動態(tài)添加驗證
$("#dzName").rules("add",{ required: true,range:[1,100000000000], messages: { required: "必填項"} });
動態(tài)刪除驗證
$("#dzName").rules("remove");
判斷驗證是否全部通過
if(!$("#entInfoForm").validate().form()){
alert("如果您保存不了,請先將必填項填寫完整(紅色字體提示'必填項')");
}
*/