Script per data ed ora
<BODY ONLOAD="startclock()">
<script language="JavaScript">
<!-- Script x DATA & ORA -->
<!-- Helpers for JSI page...
// Navigation - Start
function goback(){
alert("Good Bye!");
history.go(-1);
}
function gettheDate() {
Todays = new Date();
*TheDate = "" + Todays.getDate() +" / "+ (Todays.getMonth()+ 1) + " / 2001"
**TheDate = "" + Todays.getDate() +" / "+ (Todays.getMonth()+ 1) + " / " + Todays.getYear()
document.clock.date.value = TheDate;
}
var timerID = null;
var timerRunning = false;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function startclock () {
// Make sure the clock is stopped
stopclock();
gettheDate()
showtime();
}
function showtime () {
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
var timeValue = "" + hours
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
document.clock.face.value = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true;
}
// end Helpers -->
</script>
<center>
<form name="clock" onSubmit="0">
Ore:
<input type="text" name="face" size=8 value="">
Del:
<input type="2000" name="date" size=14 value="">
<h6><center><I>(La data e l'ora sono del vostro sistema operativo.)</i></center></h6>
</center>
Deve essere utilizzata solo una delle due istuzioni contrassegnate da "*" e "**".
* Con questa istruzione il numero dell'anno, non il resto, è forzato.
** Con questa istruzione l'anno e preso come per tutto il resto, ma il risultato ha la forma di tre numeri.
per esempio: l'anno 2000 apparirà 100, l'anno 2001 101, etc..