|
サンプル |
タグ |
|
|
<SCRIPT language="JavaScript">
<!--
function to() {d=new Date();
document.tokei.tok.value =(new Date().getHours() + "時" + new Date().getMinutes() + "分" + new Date().getSeconds() + "秒");
setTimeout("to()", 1000);}
//-->
</SCRIPT>
<BODY onLoad="to()">
<FORM NAME="tokei">
<INPUT TYPE="text" NAME="tok" SIZE="14" style="color:#00FF00;background-color:#404040;">
</FORM>
|
|
変更をするところ |
|
|
#00FF00 | … | 時計の文字色を記入 |
#404040 | … | 時計の背景色を記入 |
時刻 | … | サンプルを参考に自分の好きな言葉に変更 |
|
|
その他の詳細 |
|
|
JavaScriptを大量使用しているページには、設置をしないほうが無難です。
|
|
|
|