study004

<html>
<head>
<title>study 004</title>
</head>
<body>
<p>
<script language="JavaScript" type="text/javascript">
now 
= new Date();
localtime 
= now.toString();
utctime 
= now.toGMTString();
document.write(
"<b>本地時間:</b> " + localtime + "<br>");
document.write(
"<b>世界時間:</b> " + utctime + "<br>");
hours 
= now.getHours();
mins 
= now.getMinutes();
secs 
= now.getSeconds();
document.write(
"<h1>");
document.write(hours 
+ "" + mins + "" + secs + "");
document.write(
"</h1>");
</script>
</p>
</body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章