欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js獲得當前系統(tǒng)日期時間的方法

 更新時間:2015年05月06日 17:36:36   作者:lrwins  
這篇文章主要介紹了js獲得當前系統(tǒng)日期時間的方法,涉及javascript操作日期時間的相關技巧,非常簡單實用,需要的朋友可以參考下

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

<!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(); //取當前秒數(shù)
alert(strDate); //結果輸出
}
</script>
</head>
<body>
</body>
</html>

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

相關文章

最新評論