Comment obtenir la valeur du bouton qui cliquez dessus jQuery

$("button").click(function() {
    var button = $(this).val();
    alert(button);
});
sajad.pro