Jquery: Comment obtenir la valeur td de la table dynamic?
Voici le tableau va ressembler à: //id is generic like 1,2,3,4,5 a b c d I am creating a generic table using id, based on generic id I’m trying to get the td value Voici le code JS que j’ai essayé: $(‘#mytable tr:nth-child(2) td’).each(function(){ alert($(this).text()); }); Le script ci-dessus itère toute la valeur td en […]