Récupérer la valeur d'un élément
Bonjour
je cherche à recuperer un texte dans un td
sachant que ces 2 tableaus sont bouclé en php
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| <table>
<tr>
<td width=60 class="totalactive">texte à recuperer</td>
</tr>
</table>
<div>
<table>
<tr>
<td width=60><b>Is active</b> :</td>
<td width=50><img class="img_active"></td>
</tr>
</table>
</div>
<table>
<tr>
<td width=60 class="totalactive">texte à recuperer</td>
</tr>
</table>
<div>
<table>
<tr>
<td width=60><b>Is active</b> :</td>
<td width=50><img class="img_active"></td>
</tr>
</table>
</div>
<table>
<tr>
<td width=60 class="totalactive">texte à recuperer</td>
</tr>
</table>
<div>
<table>
<tr>
<td width=60><b>Is active</b> :</td>
<td width=50><img class="img_active"></td>
</tr>
</table>
</div>
... |
j'ai tester sans succes :
Code:
1 2 3 4
| $(".img_active").live("click",function() {
var xxx = $(this).prev("td.totalactive").html();
alert(xxx);
}); |
Merci de votre aide