This article mainly introduces the method of JS to get the current time, and makes a comparative analysis in the form of specific examplesjavascriptRelated operating skills for obtaining date and time, friends in need can refer to the following
The example in this article describes the method of getting the current time in JS. Share it with everyone for your reference, the details As follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>日期时间</title> </head> <body> <script> <!-- var myDate = new Date(); myDate.getYear(); //获取当前年份(2位) myDate.getFullYear(); //获取完整的年份(4位,1970-????) myDate.getMonth(); //获取当前月份(0-11,0代表1月) myDate.getDate(); //获取当前日(1-31) myDate.getDay(); //获取当前星期X(0-6,0代表星期天) myDate.getTime(); //获取当前时间(从1970.1.1开始的毫秒数) myDate.getHours(); //获取当前小时数(0-23) myDate.getMinutes(); //获取当前分钟数(0-59) myDate.getSeconds(); //获取当前秒数(0-59) myDate.getMilliseconds(); //获取当前毫秒数(0-999) myDate.toLocaleDateString(); //获取当前日期 var mytime=myDate.toLocaleTimeString(); //获取当前时间 myDate.toLocaleString( ); //获取日期与时间 alert(mytime); //方法二: today = new Date(); var todayStr = today.getYear() + "-"; if(today.getMonth()<10){ todayStr=todayStr+"0"+today.getMonth(); } else{ todayStr=todayStr+today.getMonth(); } if(today.getDay()<10){ todayStr=todayStr+"-0"+today.getDay(); } else{ todayStr=todayStr+today.getDay(); } todayStr = todayStr +" " if(today.getHours()<10){ todayStr=todayStr+today.getHours(); } else{ todayStr=todayStr+today.getHours(); } if(today.getMinutes()<10){ todayStr=todayStr+":0"+today.getMinutes(); } else{ todayStr=todayStr+":"+today.getMinutes(); } todayStr = todayStr + ":00"; document.write(todayStr); //--> </script> </body> </html>
The above is the detailed content of Detailed explanation of JS method to obtain the current time sample code. For more information, please follow other related articles on the PHP Chinese website!