首页 > 编程语言 > 详细

JavaScript - Date对象使用

时间:2014-09-21 21:39:42      阅读:328      评论:0      收藏:0      [点我收藏+]
<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对象使用

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!