js獲取當前日期時間,昨天 本月第一天和最後一天

2021-08-31 19:04:12 字數 725 閱讀 7839

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!

js獲取當前日期時間,格式為yymmddhhmiss

function

curenttime()   $scope.time='當前日期時間為:'+curenttime();

獲取昨天、本月第一天和最後一天

function

getdatestr(adddaycount)    $scope.zuotian = getdatestr(-1);//昨天

var date_ = new

date();     var year = date_.getfullyear();     var month = date_.getmonth() + 1;     $scope.firstdate = year + '.' + month + '.01';//當月第一天

var day = new

date(year,month,0);         $scope.lastdate = year + '.' + month + '.' + day.getdate();//當月最後一天

給我老師的人工智慧教程打call!

Js獲取當前日期時間

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...

JS獲取當前日期時間

var mydate new date var years mydate.getfullyear 從date 物件以四位數字返回年份 var months mydate.getmonth 從date 物件返回月份 0 11 var days mydate.getdate 從date物件返回乙個月中的...

Js獲取當前日期時間

var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...