94 votes

L'événement de clic Jquery ne fonctionne pas après la méthode append

J'ai donc ce bouton qui ajoute une nouvelle ligne à la table, mais mon problème est qu'il n'écoute pas le bouton .new_participant_form après que la méthode d'ajout ait été appliquée.

http://jsfiddle.net/cTEFG/

Cliquez sur Ajouter une nouvelle entrée puis cliquez sur le nom du formulaire.

$('#add_new_participant').click(function() {

    var first_name = $('#f_name_participant').val();
    var last_name = $('#l_name_participant').val();
    var role = $('#new_participant_role option:selected').text();
    var email = $('#email_participant').val();

    $('#registered_participants').append('<tr><td><a href="#" class="new_participant_form">Participant Registration</a></td><td>'+first_name+ ' '+last_name+'</td><td>'+role+'</td><td>0% done</td></tr>');

    });

    $('.new_participant_form').click(function() {

        var $td = $(this).closest('tr').children('td');

        var part_name = $td.eq(1).text();
        alert(part_name);

    });
});

HTML

<table id="registered_participants" class="tablesorter">

<thead>
<tr> 
<th>Form</th>
<th>Name</th>
<th>Role</th>
<th>Progress </th>

</tr> 
</thead>

<tbody>
<tr> 
<td><a href="#" class="new_participant_form">Participant Registration</a></td>
<td>Smith Johnson</td>
<td>Parent</td>
<td>60% done</td>

</tr> 
</tbody>

</table>

<button id="add_new_participant"></span>Add New Entry</button>

1voto

kush Points 373
$(document).on("click", '.mylink', function(event) { 
alert("new link clicked!");});

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X