Jquery, ajax button not working

use*_*937 1 html javascript ajax jquery

I have a button that submit data via ajax. Then when I have it change to a different button which then creates a cycle between the two buttons.

However the second button isn't click-able. Any idea why? Heres my code:

<div class="<?PHP echo $value['id'];?>"><button class="checkin" id="<?PHP echo $value['id'];?>">Checkin</button></div>

<script type="text/javascript">
$(function() { // wrap inside the jquery ready() function


//Attach an onclick handler to each of your buttons that are meant to "approve"
$(".checkin").click(function(){

   //Get the ID of the button that was clicked on
   var id_of_item_to_approve = $(this).attr("id");


   $.ajax({
      url: "checkin_user.php", //This is the page where you will handle your SQL insert
      type: "POST",
      data: "eventid=<?PHP echo $eventId;?>" + "&id=" + id_of_item_to_approve, //The data your sending to some-page.php
      success: function(){
          alert("AJAX request was successfull");
          $("." + id_of_item_to_approve).html('<button class="checkout" id="' + id_of_item_to_approve + '">Check Out</button>');
      },
      error:function(){
          alert("AJAX request was a failure");
      }   
    });

});

//Attach an onclick handler to each of your buttons that are meant to "approve"
$(".checkout").click(function(){

   //Get the ID of the button that was clicked on
   var id_of_item_to_approve = $(this).attr("id");


   $.ajax({
      url: "checkin_user.php", //This is the page where you will handle your SQL insert
      type: "POST",
      data: "checkout=1&eventid=<?PHP echo $eventId;?>" + "&id=" + id_of_item_to_approve, //The data your sending to some-page.php
      success: function(){
          alert("AJAX request was successfull");
          $("." + id_of_item_to_approve).html('<button class="checkin" id="'+ id_of_item_to_approve +'">Check In</button>');
      },
      error:function(){
          alert("AJAX request was a failure");
      }   
    });

});

});
</script>
Run Code Online (Sandbox Code Playgroud)

Sud*_*oti 6

由于您的按钮是从ajax响应动态生成的,因此您需要使用.on(),如:

$(document).on('click', '.checkout', function() {
    //rest of your code here
});
Run Code Online (Sandbox Code Playgroud)

  • 背后的推理如下:"除非您使用.on方法,否则Javascript运行时看不到动态生成的标签.该方法会持续监控添加到DOM的新项目." (2认同)