オッシャレー

function tClock()
{
dt = new Date();
h = dt.getHours();
m = dt.getMinutes();
s = dt.getSeconds();
document.title = h+”:”+m+”:”+s;
setTimeout(“tClock()”,1000);
}

こんなんもありなんですね。
ちょっと最近のJScriptを追いかけたくなりました。

JavaScript or Ajax なんてオススメの冊子(日本語限定)がありましたら教えて下さい。

Leave a Reply

You must be logged in to post a comment.