1. 程式人生 > >從前端獲取伺服器的系統時間

從前端獲取伺服器的系統時間

         //獲取伺服器系統時間,年月日,時分秒         function getServerDate()         {             var time,year,month,date,hours,minutes,seconds;             //var hours,minutes,seconds;             time = new Date($.ajax({async: false}).getResponseHeader("Date"));             year = time.getFullYear();//年             //小於10的數在前面加上0             month = (time.getMonth()+1) < 10?("0"+(time.getMonth()+1)):(time.getMonth()+1);//月             date = time.getDate() < 10?("0"+time.getDate()):time.getDate();//日             hours = time.getHours()<10?("0"+time.getHours()):time.getHours();//時             minutes = (time.getMinutes()<10?("0"+time.getMinutes()):time.getMinutes());//分             seconds = (time.getSeconds()<10?("0"+time.getSeconds()):time.getSeconds()); //秒             //拼成自己想要的日期格式             time = year+"-"+month+"-"+date+" "+hours+":"+minutes+":"+seconds;             return time;         }                      //獲取伺服器系統時間,年月日           function getServerDateYear()         {             var time,year,month,date;             //var hours,minutes,seconds;             time = new Date($.ajax({async: false}).getResponseHeader("Date"));             year = time.getFullYear();//年             //小於10的數在前面加上0             month = (time.getMonth()+1) < 10?("0"+(time.getMonth()+1)):(time.getMonth()+1);//月             date = time.getDate() < 10?("0"+time.getDate()):time.getDate();//日             //拼成自己想要的日期格式             time = year+"-"+month+"-"+date;             return time;         }