ionic 獲取時間

2021-07-12 00:15:09 字數 1412 閱讀 5628

var str ='2015-03-16 17:13:15';

str = str.replace(/-/g,"/");

var date = new date(str );

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( );        //獲取日期與時間

//獲取當前時間並格式化

var time1 = new date().format("yyyy-mm-dd hh:mm:ss");     

var time2 = new date().format("yyyy-mm-dd");    

我的使用方法:

$scope.lacaldate = d.getfullyear()+"-"+((d.getmonth()+1)<10?"0":"")+(d.getmonth()+1)+"-"+(d.getdate()<10?"0":"")+d.getdate()+" "+ (d.gethours()+2<10?"0":"")+(d.gethours()+2)+":"+(d.getminutes()<10?"0":"")+d.getminutes()+":"+ (d.getseconds()<10?"0":"")+d.getseconds();

ps:

function   formatdate(now)        

var   d=new

date(1230999938);     

alert(formatdate(d));

ionic中獲取座標方法

ionic中獲取座標的方法 1.首相需要執行命令 cordova plugin add cordova plugin geolocation 2.然後塊級注入配置bower檔案引入ngcordova 2.然後塊級注入配置bower檔案引入ngcordova 3.控制器中注入 cordovageolo...

ionic 獲取手機所在位置

之前專案中需要使用到定位功能,前邊的文章提到的座標位置是有問題的,是國際座標,國內的環境使用google地圖會出現問題,所以需要使用國內的地圖進行座標解析,因為國內和國外的座標體系不一致,需要通過轉換才能使用 具體原因請到網上自由查詢 1.先需要安裝外掛程式,在專案的根目錄下執行命令 cordova...

Ionic入門 Ionic 列表

看過ionic官網的,都知道ionic有成型的css文件和js文件.對於初學者來說,幫助文件是最好的學習材料.在剛接觸ionic和angularjs的時候,基本的東西都不了解,就經常性的看文件.看demo,實現一下,發現移動端挺好玩的,介面又好看.今天介紹一下ionic列表,其實也是羅列一下常用的幾...