“detecter un Click Sur un bouton en jQuery” Kod odpowiedzi

detecter un Click Sur un bouton en jQuery

 $(form).submit(function(e){ // Get the button that was clicked var submit = $(this.id).context.activeElement; // You can get its name like this alert(submit.name) // You can get its atsortingbutes like this too alert($(submit).attr('class')) }); 
Nutty Nightingale

detecter un Click Sur un bouton en jQuery

 $(document).ready(function() { $( "form" ).submit(function () { // Get the submit button element var btn = $(this).find("input[type=submit]:focus" ); }); } 
Nutty Nightingale

Odpowiedzi podobne do “detecter un Click Sur un bouton en jQuery”

Pytania podobne do “detecter un Click Sur un bouton en jQuery”

Więcej pokrewnych odpowiedzi na “detecter un Click Sur un bouton en jQuery” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu