3
私はプロジェクト(Android application
を使用してApache Cordova HTML CSS JS
)に取り組んでいます。
device current time and date
を取得したいと思います。
Cordova:Androidデバイスの現在の日付/時刻
すべての質問を確認しましたが、解決策はありません。助けてもらえますか?ありがとう。
私はプロジェクト(Android application
を使用してApache Cordova HTML CSS JS
)に取り組んでいます。
device current time and date
を取得したいと思います。
Cordova:Androidデバイスの現在の日付/時刻
すべての質問を確認しましたが、解決策はありません。助けてもらえますか?ありがとう。
次のコードは、日時がこの
var currentdate = new Date();
var datetime = currentdate.getDate() + "/"
+ (currentdate.getMonth()+1) + "/"
+ currentdate.getFullYear() + " @ "
+ currentdate.getHours() + ":"
+ currentdate.getMinutes() + ":"
+ currentdate.getSeconds();
を試す取得する方法を示しています