Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/08/2012, 14:30
jeremiselxi
(Desactivado)
 
Fecha de Ingreso: septiembre-2008
Mensajes: 269
Antigüedad: 16 años, 3 meses
Puntos: 22
Pasar un valor de un alert a un input text

Tengo el siguiente problema tengo este codigo
Código Javascript:
Ver original
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function changeContent()
  6. {
  7. var x=document.getElementById('tableBorder');
  8. var a = x.rows[1].cells[4].innerHTML;
  9. alert(a);
  10. //$("#men").val();
  11.  
  12. }
  13. </script>
  14. </head>
  15.  
  16. <body>
  17. <input type="text" value="" id="men"><br>
  18. <input type="button" onclick="changeContent()" value="Change content">
  19. <table border="1" cellspacing="0" cellpadding="4" class="tableBorder" id="tableBorder">
  20.   <tbody>
  21.     <tr>
  22.       <th>ID Vehiculo</th>
  23.       <th>Desde:</th>
  24.       <th>Hasta:</th>
  25.       <th>Combustible</th>
  26.       <th>Distancia:</th>
  27.       <th>inicio de Odometro</th>
  28.       <th>fin de Odometro</th>
  29.     </tr>
  30.     <tr style="">
  31.       <td>Sonorama Ficha 12</td>
  32.       <td>2012-08-31 00:00:29</td>
  33.       <td>2012-08-31 14:23:08</td>
  34.       <td>Used: 53.14 Galones; Add Times: 0; Add Total: 0 Galones; Comsumo de combustible: 25.3 Galones/100KM</td>
  35.       <td>209.86</td>
  36.       <td>364.0</td>
  37.       <td>568.2</td>
  38.     </tr>
  39.   </tbody>
  40. </table>
  41. </body>
  42.  
  43. </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.