码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript - Date对象使用

时间:2014-09-21 23:05:11      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:javascript   王吉平   

<html>

	<head>
		
	<head>

	<body>
		<script language="javascript">
		//Date对象
			// 从字符串中分析出时间
			// var dateVal = Date.parse("November 1, 1997 10:15 AM");
			// var current_time = new Date(dateVal);
			
			// 获取系统时间的各个部分
			var current_time = new Date();
			var strDate = current_time.getYear() + "年" ;
			strDate += (current_time.getMonth() + 1) + "月" ;
			strDate += current_time.getDate() + "日" ;
			strDate += current_time.getHours() + ":" ;
			strDate += current_time.getMinutes() + ":" ;
			strDate += current_time.getSeconds() ;
			alert(strDate) ;			
		</script>
	</body>

</html>

JavaScript - Date对象使用

标签:javascript   王吉平   

原文地址:http://blog.csdn.net/imwangjiping/article/details/39455643

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!