ステータスバーに現在時刻を表示する
<body onLoad="timef()">
<script language="JavaScript">
<!--
function timef(){
date = new Date();
window.status=date.getFullYear() + "年"
+(date.getMonth()+1) + "月"
+date.getDate() + "日"
+date.getHours() + "時"
+date.getMinutes() + "分"
+date.getSeconds() + "秒";
setTimeout ("timef()",1000);
}
//-->
</script>
これをコピー&ペーストすればステータスバーに現在時刻が表示されます。
ウインドウの下の方を見てね☆