undefined
<html> <head> <title>Время.</title> <script language="JavaScript"> <!-- ndata = new Date(); hours = ndata.getHours(); mins = ndata.getMinutes(); secs = ndata.getSeconds(); if (hours < 10) {hours = "0" + hours } if (mins < 10) {mins = "0" + mins } if (secs < 10) {secs = "0" + secs } datastr = ( hours + ":" + mins + ":"+secs ) --> </script> </head> <body text="#800000" link="#8000FF" alink="#DC5912" vlink="#9B4E00"> <font face="Arial" size="3" color="#b00000"> <script language="JavaScript"> <!-- document.write(datastr); --> </script> </font> </body> </html>
|