- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>js将当前时间转换为字符串日期</title>
- <script type="text/javascript" src="jquery-1.11.1.min.js"></script>
- <script type="text/javascript">
- $(function () {
- $("#clickDate").click(function () {
- var date=new Date();
- alert("date:"+date);
- dateStr=dateToString(date);
- alert("dateStr:"+dateStr);
- });
- });
- </script>
- <script type="text/javascript">
- function dateToString(now){
- var year = now.getFullYear();
- var month =(now.getMonth() + 1).toString();
- var day = (now.getDate()).toString();
- var hour = (now.getHours()).toString();
- var minute = (now.getMinutes()).toString();
- var second = (now.getSeconds()).toString();
- if (month.length == 1) {
- month = "0" + month;
- }
- if (day.length == 1) {
- day = "0" + day;
- }
- if (hour.length == 1) {
- hour = "0" + hour;
- }
- if (minute.length == 1) {
- minute = "0" + minute;
- }
- if (second.length == 1) {
- second = "0" + second;
- }
- var dateTime = year + "-" + month + "-" + day +" "+ hour +":"+minute+":"+second;
- return dateTime;
- }
- </script>
- </head>
- <body>
- <button id="clickDate">系统当前时间转换为字符串</button>
- </body>
- </html>