Javascript电话号码,邮件地址,身份证验证插件,传入要验证的字符串,返回ture代表符合,返回false代码不符合。
使用:
document.getElementById("btnPhone").onclick=function(){ alert(ValidationHandler.IsPhone(document.getElementById("phoneInput").value)==true?"合法":"不合法") }; document.getElementById("btnEmail").onclick=function(){ alert(ValidationHandler.IsEmail(document.getElementById("emailInput").value)==true?"合法":"不合法") }; document.getElementById("btnIdCard").onclick=function(){ alert(ValidationHandler.isIDCard(document.getElementById("idCardInput").value)==true?"合法":"不合法") };
演示地址:http://www.pengyaou.com/LegendsZ/eg/Validation.html
js插件下载:http://www.pengyaou.com/LegendsZ/File/2014/08/22/20140822205741305.html