HTML 中获取现在时间,实时时间获取

 

JavaScript   Date 对象

                           Date 对象用于处理日期与实际。

创建 Date 对象:

                 var now  =  new Date().

 

方法 描述
getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。
getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。
getFullYear() 从 Date 对象以四位数字返回年份
getHours() 返回 Date 对象的小时 (0 ~ 23)。
getMilliseconds() 返回 Date 对象的毫秒(0 ~ 999)。
getMinutes() 返回 Date 对象的分钟 (0 ~ 59)。
getMonth() 从 Date 对象返回月份 (0 ~ 11)。
getSeconds() 返回 Date 对象的秒数 (0 ~ 59)。
   
setDate() 设置 Date 对象中月的某一天 (1 ~ 31)。
setFullYear() 设置 Date 对象中的年份(四位数字)。
setHours() 设置 Date 对象中的小时 (0 ~ 23)。
setMilliseconds() 设置 Date 对象中的毫秒 (0 ~ 999)。
setMinutes() 设置 Date 对象中的分钟 (0 ~ 59)。
setMonth() 设置 Date 对象中月份 (0 ~ 11)。
setSeconds() 设置 Date 对象中的秒钟 (0 ~ 59)。
setTime() setTime() 方法以毫秒设置 Date 对象。
   

 

 

js 中获取现在时间 年-月-日

 

 

2、实时显示时间 

 

"time1" >

View Code

 

toLocaleTimeString()

           根据本地时间把 Date 对象的时间部分转换为字符串,并返回结果。

                            e:   下午2:21:21

toLocaleDateString()

          根据本地时间把 Date 对象的日期部分转换为字符串,并返回结果。

                           e:  2017/8/14

 

 

<%@ page language="C#" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
"-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">


"Content-Type" content="text/html; charset=UTF-8">





实时显示时间


"getTime()">

    
"date1">
View Code

 

获取到的月份加一

 

转载于:https://www.cnblogs.com/Tanghongchang/p/7345327.html

你可能感兴趣的:(HTML 中获取现在时间,实时时间获取)