jquery表单验证仿Toast提示效果实例分享
程序员文章站
2022-03-09 20:00:33
...
本文主要介绍了jquery验证表单仿Toast提示效果,实现代码简单易懂,非常不错,需要的朋友可以参考下,希望能帮助到大家。
HTML内容部分
<p class="classname"> <label for="">请输入您的手机号码</label> <input type="text" id="MobilePhone"/> <input type="text" /> --> </p>
提示html及样式部分
<p id="errormsg" style="display: none;"></p> <style> #errormsg{ width: auto; height: 20px; padding: 1px 5px; text-align: center; background-color: #000; opacity: 0.5; color: #fff; position: fixed; left: 50%; margin-left: -50px; top: 93%; border-radius: 20px; } </style>
jquery表单验证(正则表达式)
//验证手机号码 $("#MobilePhone").blur(function(){ var tel = $("#MobilePhone").val();//获取输入的手机号 var yidongreg = /^(134[012345678]\d{7}|1[34578][012356789]\d{8})$/; var dianxinreg = /^1[3578][01379]\d{8}$/; var liantongreg = /^1[34578][01256]\d{8}$/; if (yidongreg.test(tel) || dianxinreg.test(tel) || liantongreg.test(tel)) { $("errormsg").css({"display":"block"}); $("#errormsg").html("请输入正确号码").fadeIn(300).delay(2000).fadeOut(300); }else{ $("errormsg").css({"display":"block"}); $("#errormsg").html("请输入正确号码").fadeIn(300).delay(2000).fadeOut(300); } });
相关推荐:
以上就是jquery表单验证仿Toast提示效果实例分享的详细内容,更多请关注其它相关文章!
上一篇: oc
推荐阅读
-
jquery表单验证实例仿Toast提示效果
-
jquery中dom操作和事件的实例学习 仿yahoo邮箱登录框的提示效果
-
jquery仿苹果的时间/日期选择效果实例分享
-
jquery表单验证实例仿Toast提示效果
-
jquery中dom操作和事件的实例学习 仿yahoo邮箱登录框的提示效果
-
jQuery表单获取和失去焦点输入框提示效果的实例代码
-
jquery中dom操作和事件的实例学习 仿yahoo邮箱登录框的提示效果_jquery
-
jquery中dom操作和事件的实例学习 仿yahoo邮箱登录框的提示效果_jquery
-
jquery实现的用户注册表单提示操作效果代码分享_jquery
-
jQuery表单获取和失去焦点输入框提示效果的实例代码_jquery