JavaScript - Date对象使用
<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>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。