How can I post my button value in Flask with Ajax without reshing the page?

Solution
$("button").click(function(e) {
  // ...
  const valueOfButton = $(this).attr("value");
  // ...
  $.ajax({
    // ...
    data: { [$(this).attr("name")]: valueOfButton }
    // ...
  });
});