普通网友 2014-11-15 14:44
浏览 43
已采纳

如何在jQuery php中验证后在提交表单上禁用“锚点”

I have a small problem, a form on submit is being validated then I am sending it but I need to disable my submit button onClick if validation is successfull here is my button code

 <button type="submit" class="btn btn-primary " id="submitBtn"><i class="fa fa-envelope"></i> Kişi Kayıt</button>

and here is my jQuery code

..... here is validation codes .....
submitHandler: function(form) {

$.ajax({
    url: 'plugin/clientIssues.php?tU=1',
    type: "POST",
    data: $('#userReg').serialize(),
    success: function(response) {
               alert(response); // show response from the php script.

               window.setTimeout('location.reload()', 300);
             }            
     });
    return false;
    $form.submit();
 }
});

Do you have any idea where I can put

$('#submitBtn').hide();

if the validation is correct and pressed on submit button ?

  • 写回答

1条回答 默认 最新

  • dousui3124 2014-11-15 14:45
    关注

    In your success function:

    success: function(response) {
               alert(response); // show response from the php script.
               $('#submitBtn').hide();
               window.setTimeout('location.reload()', 300);
             }
    

    Although I'd (personally) just disable the button:

    success: function(response) {
               alert(response); // show response from the php script.
               $('#submitBtn').attr('disabled','true');
               window.setTimeout('location.reload()', 300);
             }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了