使用步骤:
1.首先在项目中添加必备js与css
3.
中要验证的标签(做一些常用的演示) 函数):图片:文件:用户名:5.效果图:
$(document).ready(function () {
$.formValidator.initConfig({ formID: "form1",onError: function () { alert("校验没有通过,具体<a href="https://www.jb51.cc/tag/cuowu/" target="_blank" class="keywords">错误</a>请看<a href="https://www.jb51.cc/tag/cuowu/" target="_blank" class="keywords">错误</a><a href="https://www.jb51.cc/tag/tishi/" target="_blank" class="keywords">提示</a>") } });
$("#name").formValidator({ onShow: "请输入姓名!",onFocus: "输入一个到十个字符",onCorrect: "输入正确,谢谢您的合作!" }).inputValidator({ min: 1,max: 20,onError: "输入长度,不对!" });
$("#timelong").formValidator({ onShow: "请输入路演时长!",onFocus: "输入格式为正整数!",onCorrect: "输入正确,谢谢您的合作!" }).regexValidator({ regExp:"intege1",onError: "您输入的时长格式不正确!" });
$("#address").formValidator({ onShow: "请输入路演平台<a href="https://www.jb51.cc/tag/mingcheng/" target="_blank" class="keywords">名称</a>!",onFocus: "输入一个到五十个字符",max: 50,onError: "输入长度,不对!" });
$("#urladdress").formValidator({ onShow: "请输入路演<a href="https://www.jb51.cc/tag/lianjiedizhi/" target="_blank" class="keywords">链接地址</a>!",onFocus: "输入格式:http://www.baidu.com",onCorrect: "输入正确,谢谢您的合作!" }).regexValidator({ regExp:"^(http|https|ftp)\://([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|localhost|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\?\'\\\+&%\$#\=~_\-]+))*$",onError: "输入格式不正确!" });
$("#time").formValidator({ onCorrect: "格式正确" }).functionValidator({fun:isDateTime,onError: "输入格式,不对!" });
$("#txtcontent").formValidator({ onShow: "请输入专家简介!",onFocus: "输入一个到一百个字符",max: 100,onError: "输入长度,不对!" });
});
ajax验证用户是否存在
js代码 (html中一定要设置name值,否则动态是获取不到值的)
一般处理程序代码
#region 判断<a href="https://www.jb51.cc/tag/yonghu/" target="_blank" class="keywords">用户</a>是否被<a href="https://www.jb51.cc/tag/zhuce/" target="_blank" class="keywords">注册</a>过
public bool isExist(string userName)
{
Snet.BLL.UserAccount bll = new BLL.UserAccount();
return bll.Exists(userName);
}
#endregion
以上就是本文的全部内容,希望对大家的学习有所帮助。
原文链接:https://www.f2er.com/jquery/49442.html