Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/08/2010, 07:31
shaggyrd
 
Fecha de Ingreso: julio-2009
Mensajes: 8
Antigüedad: 14 años, 10 meses
Puntos: 0
Recorre <tr> con javascript y enviar infomacion para ser procesada por php

buenas y gracias de ante mano por sus respuestas
el problema es que necesito tomar los datos de una fila selecionada por un radio button y debo hacerlo con javascript.
entiendo que con getelementbyid puedo tomar los datos pero soy muy novato en javascript y no e encontrado la forma de hacer esto
Código HTML:
<table cellspacing='0'>
<thead><tr>
<td width='5%'></td>
<td class='tc' width='10%'>Cedula</td>
<td width='60%'>Nombre</td>
<td width='10%'>Parentesco</td>
<td width='10%'>Estado</td>
<td width='5%'>Foto</td>
</tr></thead>

<tbody>
<tr>
<td align='center'><input type='radio' name='radio' id='radio' value='radio[0]' onclick='seleccion(this)' /></td>
<td>02467084</td>
<td>Isea Saida</td>
<td>Madre</td>
<td width='20%'>A</td>
<td width='5%'><img src='includes/foto.php?foto=33522' width='40' height='48'/></td>
</tr>
<tr>
<td align='center'><input type='radio' name='radio' id='radio' value='radio[1]' onclick='seleccion(this)' /></td>
<td>13550711</td>

<td>Leon Jeimy</td>
<td>Titular</td>
<td width='20%'>A</td>
<td width='5%'><img src='includes/foto.php?foto=35743' width='40' height='48'/></td>
</tr>
<tr>
<td align='center'><input type='radio' name='radio' id='radio' value='radio[2]' onclick='seleccion(this)' /></td>
<td>MENOR</td>
<td>Palomino Javier</td>
<td>Hijo</td>
<td width='20%'>A</td>

<td width='5%'><img src='includes/foto.php?foto=15198' width='40' height='48'/></td>
</tr>
<tr>
<td align='center'><input type='radio' name='radio' id='radio' value='radio[3]' onclick='seleccion(this)' /></td>
<td>MENOR</td>
<td>Palomino Mariana</td>
<td>Hijo</td>
<td width='20%'>A</td>
<td width='5%'><img src='includes/foto.php?foto=16773' width='40' height='48'/></td>
</tr>
<tr>
<td align='center'><input type='radio' name='radio' id='radio' value='radio[4]' onclick='seleccion(this)' /></td>
<td>MENOR</td>

<td>Palomino Paola</td>
<td>Hijo</td>
<td width='20%'>A</td>
<td width='5%'><img src='includes/foto.php?foto=33857' width='40' height='48'/></td>
</tr>
</tbody
></table> 
nota:esta es una tabla generada por php.