“Deticter Un Haga clic en Sur Un Bouton en jQuery” Código de respuesta

Deticter Un Haga clic en 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

Deticter Un Haga clic en 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

Respuestas similares a “Deticter Un Haga clic en Sur Un Bouton en jQuery”

Preguntas similares a “Deticter Un Haga clic en Sur Un Bouton en jQuery”

Más respuestas relacionadas con “Deticter Un Haga clic en Sur Un Bouton en jQuery” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código