Código Javascript:
Ver original
<!DOCTYPE html> <html> <head> <script> function changeContent() { var x=document.getElementById('tableBorder'); var a = x.rows[1].cells[4].innerHTML; alert(a); //$("#men").val(); } </script> </head> <body> <input type="text" value="" id="men"><br> <input type="button" onclick="changeContent()" value="Change content"> <table border="1" cellspacing="0" cellpadding="4" class="tableBorder" id="tableBorder"> <tbody> <tr> <th>ID Vehiculo</th> <th>Desde:</th> <th>Hasta:</th> <th>Combustible</th> <th>Distancia:</th> <th>inicio de Odometro</th> <th>fin de Odometro</th> </tr> <tr style=""> <td>Sonorama Ficha 12</td> <td>2012-08-31 00:00:29</td> <td>2012-08-31 14:23:08</td> <td>Used: 53.14 Galones; Add Times: 0; Add Total: 0 Galones; Comsumo de combustible: 25.3 Galones/100KM</td> <td>209.86</td> <td>364.0</td> <td>568.2</td> </tr> </tbody> </table> </body> </html>
Este codigo lo que quiero es tomar el valor que esta debajo de Distancia. Este codigo puedo tomar el valor 209.86 con un alert pero no puedo pasarlo al input text.