Bootstrap Deaktivieren Sie die Schaltfläche nach dem Klick
$("#buttonid").on("click", function() {
$(this).prop("disabled", true);
});
Wicked Willet
$("#buttonid").on("click", function() {
$(this).prop("disabled", true);
});