php+ajax实现登录按钮加载loading效果
程序员文章站
2022-04-13 13:29:24
php+ajax实现登录按钮加载loading效果,一个提高用户体验,二个避免重复提交表单,ajax判断加载是否完成。 ......
php+ajax实现登录按钮加载loading效果,一个提高用户体验,二个避免重复提交表单,ajax判断加载是否完成。
登录表单
1 <form onsubmit="return check_login()" style="text-align: center;margin-top:50px"> 2 <input value="登 录" class="btn_submit" id="btn_submit" type="submit"> 3 </form>
表单提交按钮和按钮失效样式
1 .btn_submit { 2 background-color: #e31436; 3 color: #fff; 4 cursor: pointer; 5 display: inline-block; 6 font-size: 18px; 7 height: 44px; 8 line-height: 44px; 9 text-align: center; 10 width: 200px; 11 border-radius: 2px; 12 border:none 13 } 14 .disabled{opacity: 0.5;cursor:default}
表单提交验证
1 function check_login() { 2 if ($("#btn_submit").hasclass("disabled"));//避免重复提交 3 return false; 4 $("#btn_submit").addclass("disabled").val("正在提交"); 5 $.post("login.php", {id: 1}, function(data) { 6 $("#btn_submit").removeclass("disabled").val("登 录"); 7 location.href = "http://www.sucaihuo.com/php/2747.html"; 8 }, "json"); 9 return false; 10 }
相关实例源码下载:
上一篇: 婚姻中男人背叛的代价是什么?
下一篇: 两个人总是吵架冷战怎么办?
推荐阅读
-
vue实现ajax滚动下拉加载,同时具有loading效果(推荐)
-
使用css3实现超炫的loading加载动画效果
-
php+ajax实现登录按钮加载loading效果
-
8款使用 CSS3 实现超炫的 Loading(加载)的动画效果
-
微信小程序登录按钮遮罩浮层效果的实现方法
-
使用CSS3实现超炫的Loading(加载)动画效果_html/css_WEB-ITnose
-
vue实现ajax滚动下拉加载,同时具有loading效果(推荐)
-
使用CSS3实现超炫的Loading(加载)动画效果_html/css_WEB-ITnose
-
基于jquery的loading 加载提示效果实现代码_jquery
-
ajax请求完成之前的loading加载效果如何实现?(代码示例)