简体   繁体   中英

Unable to call a jQuery function on button click

Am trying calling a jQuery function while clicking the save button. But i didn't get any response while clicking the button.

<button type="button" id="save" class="btn btn-primary pull-right">Save Expense</button>
$('#save').on('click', function() {
  alert("test");
  var data = $('form').serialize();
  console.log("data" + data);
  $.ajax({
    type: "POST",
    url: "saveExpense",
    data: data,
    cache: false,
    success: function(data) {
      alert("Success");
    }
  });
});

Create a click event like this , this will solve your problem.

 $(document).on('click','#save', function() { alert("test"); var data = $('form').serialize(); console.log("data" + data); $.ajax({ type: "POST", url: "saveExpense", data: data, cache: false, success: function(data) { alert("Success"); } }) })
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <button type="button" id="save" class="btn btn-primary pull-right">Save Expense</button>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM