Ver Mensaje Individual
  #4 (permalink)  
Antiguo 13/10/2011, 10:59
quink3216
 
Fecha de Ingreso: octubre-2010
Ubicación: Oviedo
Mensajes: 20
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: lastModified y Google Chrome

Cita:
Iniciado por Franz1628 Ver Mensaje
En google chrome tambien sale una fecha ,aunque no es la misma que sale en Firefox e internet explorer.

Pues prueba este código , en esta salen las mismas fechas.
Código HTML:
Ver original
  1. <title>Last Modified</title>
  2. <meta http-equiv="Content-Type" content="text/html;
  3. charset=iso-8859-1">
  4. <script type="text/javascript">
  5.  
  6. function showLastModified() {
  7. var out = document.getElementById('lastModified');
  8. var d = new Date();
  9. if (d.toLocaleDateString) {
  10. out.innerHTML = d.toLocaleDateString(document.lastModified);
  11. }
  12. else {
  13. out.innerHTML = document.lastModified;
  14. }
  15. }
  16.  
  17. window.onload = showLastModified;
  18. </head>
  19. Last Modified on <span id="lastModified">&nbsp;</span>
  20. </body>
  21. </html>
Gracias por la respuesta..

Pero habria alguna manera de incluir la hora??