用js獲取日期時間記錄
//年份
new date(
).getyear(
); //獲取當前年份(2位)
new date(
).getfullyear(
); //獲取完整的年份(4位)
//月和天
new date(
).getmonth(
); //獲取當前月份
new date(
).getdate(
); //獲取當前日
new date(
).getday(
); //獲取當前星期幾
//時間
new date(
).gethours(
); //獲取當前小時數
new date(
).getminutes(
); //獲取當前分鐘數
new date(
).getseconds(
); //獲取當前秒數
new date(
).getmilliseconds(
); //獲取當前毫秒數
new date(
).gettime(
); //獲取當前時間(毫秒數)
new date(
).tolocaletimestring(
); //獲取當前時間(格式化)
new date(
).tolocaledatestring(
); //獲取當前日期
new date(
).tolocalestring(
); //獲取日期與時間(格式化)
記錄一下js中獲取後台request域中的屬性
當後台往requset域中存值時,例如request.setattribute entity entity 其中entity為實體類。例如其中有個id屬性。當返回到jsp頁面上時,在js中可以使用el表示式var id 來獲取該屬性值。但是該表示式必須是在返回的 jsp頁面中引用,而不能是在改jsp...
JS獲取時間戳的幾種方式(儲存一下)
lang en charset utf 8 js獲取時間戳title head let time1 date.parse new date 1603009257000,精確到秒 let time2 newdate gettime 1603009495724,精確到毫秒 let time3 newda...
shell下獲取系統時間方法
直接呼叫系統變數 獲取今天時期 date y m d 或 date f 或 date y m d 獲取昨天時期 date d yesterday y m d 獲取前天日期 date d 2day y m d 依次類推比如獲取10天前的日期 date d 10day y m d 或n天前的 date ...