Cordova:Android设备当前日期/时间

时间:2017-10-17 02:32:24

标签: javascript cordova cordova-plugins

我正在开展一个项目(Android application使用Apache Cordova HTML CSS JS) 我想得到device current time and date

我检查了所有问题,但没有人给我一个解决方案。有人可以帮帮忙吗?感谢。

1 个答案:

答案 0 :(得分:1)

以下代码显示了如何获取日期时间尝试此

var currentdate = new Date(); 
var datetime =  currentdate.getDate() + "/"
                + (currentdate.getMonth()+1)  + "/" 
                + currentdate.getFullYear() + " @ "  
                + currentdate.getHours() + ":"  
                + currentdate.getMinutes() + ":" 
                + currentdate.getSeconds();