gpt4 book ai didi

javascript - Cordova : Android device current date/time

转载 作者:行者123 更新时间:2023-11-29 11:01:11 28 4
gpt4 key购买 nike

我正在开发一个项目(Android 应用程序,使用 Apache Cordova HTML CSS JS)。
我想获取设备当前时间和日期

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

最佳答案

下面的代码展示了如何获取日期时间试试这个

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

关于javascript - Cordova : Android device current date/time,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46781636/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com