This article introduces you to the js function of displaying the current date through example code. The code is simple and easy to understand, very good, and has certain reference value. Friends who need it can refer to it
Write in Previous:
When working on projects, the function of displaying the current date is often used. Here, record it for future reference.
Let me show you the renderings first:
Since the function is relatively simple, let’s just upload the code here
<%-- Created by IntelliJ IDEA. User: Administrator Date: 2018/6/12 Time: 8:17 --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <% String scheme = request.getScheme(); String serverName = request.getServerName(); String contextPath = request.getContextPath(); int port = request.getServerPort(); //网站的访问跟路径 String baseURL = scheme + "://" + serverName + ":" + port + contextPath; request.setAttribute("baseURL", baseURL); System.out.println("baseURL:" + baseURL); %> <html> <head> <title>js实现当前日期显示</title> <script src="${baseURL}/Bootstrap/bootstrap/assets/js/jquery-1.10.2.min.js"></script> </head> <body style="text-align: center"> <p> <span id="mytime" style="font-size: 18px;color: #00be67"></span> </p> </body> <script type="text/javascript" charset="utf-8"> $(document).ready(function(){ var date = new Date(); var weekDay = ["星期天", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]; var year = date.getFullYear(); var month = date.getMonth()+1; var day = date.getDate(); var week = weekDay[date.getDay()]; //alert(year+","+month+","+day+","+week) $("#mytime").html(year+"年"+month+"月"+day+"日      "+week); } ); </script> </html>
The above is the entire content of this article. I hope it will be helpful to everyone’s study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
Introduction to the proxy mode in JavaScript design patterns
Use pure JS code to determine whether a string contains How many Chinese characters are there?
The above is the detailed content of JS implements method to display current date. For more information, please follow other related articles on the PHP Chinese website!