DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js獲得當前系統日期時間的方法
js獲得當前系統日期時間的方法
編輯:關於JavaScript     

本文實例講述了js獲得當前系統日期時間的方法。分享給大家供大家參考。具體實現方法如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>js時間顯示</title>
<script>
var curr_time = new Date();
var strDate = curr_time.getYear()+"年";
strDate += curr_time.getMonth()+1+"月";
strDate += curr_time.getDate()+"日";
strDate += curr_time.getHours()+":";
strDate += curr_time.getMinutes()+":";
strDate += curr_time.getSeconds();
document.write(strDate);

var curr_time = new Date();
with(curr_time)
{
//定義變量,並為其賦值為當前年份,後加中文“年”字標識
var strDate = getYear()+1900+"年";
//取當前月份。注意月份從0開始,所以需加1,後加中文“月”字標識
strDate +=getMonth()+1+"月";
strDate +=getDate()+"日"; //取當前日期,後加中文“日”字標識
strDate +=getHours()+":"; //取當前小時
strDate +=getMinutes()+":"; //取當前分鐘
strDate +=getSeconds(); //取當前秒數
alert(strDate); //結果輸出
}
</script>
</head>
<body>
</body>
</html>

希望本文所述對大家的javascript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved