<div class="codetitle"> <span><a style="CURSOR: pointer" data="52508" class="copybut" id="copybut52508" onclick="doCopy('code52508')"><u>複製程式碼</u></a></span> 程式碼如下:</div> <div class="codebody" id="code52508"> <br> <br> <br><title> </title> <br><br><script> <br><br>/* <br><br>//聲明時間<BR>var date = new Date(); <BR>alert(date); //目前時間<BR>alert(date.toLocaleString());//轉換為本地時間<BR>alert(date.getFullYear());//顯示年份<BR>alert(date.getMonth() 1) ;//顯示月份0-11,需要加1 <BR>alert(date.getDate());//顯示一月中的日期<BR>alert(date.getDay());//顯示一週的日期,星期幾<BR>alert(date.getHours());//取得小時時間<BR>alert(date.getMinutes());//取得目前分鐘<BR>alert(date.getSeconds());/ /取得目前秒數<BR>alert(date.getMilliseconds());//取得目前的毫秒數<BR>alert(date.getTime());//取得從1970年1月1日午夜零時,到目前時間的毫秒值<BR>*/ <BR>//分別取得年、月、日、時、分、秒<BR>var myDate = new Date(); <BR>var year = myDate.getFullYear( ); <BR>var month = myDate.getMonth() 1; <BR>var date = myDate.getDate(); <BR>var hours = myDate.getHours(); <BR>var minutes = myDate.get) ; <BR>var seconds = myDate.getSeconds(); <br><br>//月份的顯示為兩位數字如09月<BR>if(month < 10 ){ <BR>month = "0" month ; <BR>} <BR>if(date < 10 ){ <BR>date = "0" date; <BR>} <br><br>//時間拼接<BR>var dateTime = year "年" month "月" date "日" hours "時" minutes "分" seconds "秒"; <br><br>document.write(dateTime);//列印目前時間<br><br><br><br> </script> <br><br> <br><br> <br><!--事件回應--> <br><input type="button" value="click" onclick="show()"> <br> <br><br> <br> </div>