php+ajax實現登入按鈕載入loading效果
阿新 • • 發佈:2018-12-18
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 }
相關例項原始碼下載:https://www.sucaihuo.com/php/2747.html