如何在ajax过程中显示加载动画和禁用按钮

时间:2019-06-21 15:34:24

标签: php jquery mysql ajax

我正在使用ajax将按钮的id发送到test.php,但是我被困在如何禁用按钮并在ajax过程中显示处理图像gif的步骤上,

当我使用我的代码时,它只会禁用并隐藏在第一个表格行按钮上,而不是隐藏在被单击的特定按钮上

我的代码是这个

     <tbody>

   <?php

   $letter=mysqli_query($con,"SELECT * FROM letters order by id DESC");



             if(mysqli_num_rows($letter)>0){
        while($rows_letter=mysqli_fetch_array($letter))

        {
$id=$rows_letter['id'];
$subject=$rows_letter['subject'];
$status=$rows_letter['status'];
?>

    <tr>
      <th class="text-center" scope="row">1</th>
      <td class="text-center"><?php echo $subject ;?></td>
      <td class="text-center"><?php if($status == 1){echo '<mark style="background-color: #5cb85c; color:white;" > Successfully Sent </mark>'; }else{ echo '<mark  style="background-color:#f0ad4e; color:white;"> Not  Sent Yet </mark>';}?></td>
      <td><button type="button" class="btn btn-info btn-sm btn-block">
      <span class="fa fa-pencil-square-o"></span> Edit</button></td>
      <td><button type="button" class="btn btn-danger btn-sm btn-block"> <span class="fa fa-trash-o"></span>  Move To Trash</button></td>
      <td>
      <img src="https://svc.opushealth.com/balcoltrasavings/img/Processing.gif" id="img" style="display:none"/>
      <button type="button" onclick="startsend(<?php echo $id;?>);"
      id="id"  value="<?php echo $id;?>"class="btn btn-success btn-sm btn-block">
      <span class="fa fa-paper-plane-o"></span> Send To All</button></td>
    </tr>


      <?php

        }

             }      

          ?>
     </tbody>
       <script type='text/javascript'>

    //AJAX function
   function startsend(id) {
       $('#img').show(); 
       $("#id").attr("disabled", true);
      $.ajax({
        type: "POST",
        url: "test.php",
        data:{ id: id },
        success: function(msg){
        alert( "Button Id is " + msg );
         $('#img').hide();

        }
      });
    }

</script>

test.php文件是

 <?php

if(isset($_POST['id'])){
$id = $_POST['id'];}
///rest process
?>

2 个答案:

答案 0 :(得分:1)

首先,您需要在PHP循环中删除您在HTML中创建的所有id属性,因为这将创建无效的重复项。而是将它们更改为类。

第二,使用不显眼的事件处理程序附加事件,而不是内联事件处理程序,因为它们已经过时并且是不好的做法。当您使用jQuery时,可以使用click()on()方法来完成。

最后,在该事件处理程序中,您可以使用this关键字来引用引发事件的元素,并根据需要对其进行修改。试试这个:

<img src="https://svc.opushealth.com/balcoltrasavings/img/Processing.gif" class="img" style="display: none" />
<button type="button" value="<?php echo $id;?>" class="id btn btn-success btn-sm btn-block">
  <span class="fa fa-paper-plane-o"></span> 
  Send To All
</button>
$('button.id').on('click', function() {
  var $btn = $(this).prop("disabled", true);
  var $img = $btn.prev('.img').show(); 

  $.ajax({
    type: "POST",
    url: "test.php",
    data: { id: $btn.val() },
    success: function(msg) {
      console.log("Button Id is " + msg);
      $img.hide();
    }
  });
});

答案 1 :(得分:0)

如果您正在使用ajax,则(使其尽可能简单)。

将加载的gif图像添加到html并使其隐藏(现在使用html本身的样式,您可以将其添加到单独的CSS中):-

<img src="path\to\loading\gif" id="img" style="display:none"/ >

单击按钮时显示图像,并在成功功能上再次将其隐藏。

$('#buttonID').click(function(){
  $('#img').show(); //<----show here
  $.ajax({
    ....
   success:function(result){
       $('#img').hide();  //<--- hide again
   }
}

请确保也将图像隐藏在ajax错误回调中,以确保即使ajax失败,gif也会隐藏。