Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何获取当前日期和时间以及我应该使用什么数据类型将其存储在 websql 中,对不起,我是个菜鸟……
您可以创建一个Date对象并将日期的数值存储为自 1970 年 1 月 1 日 00:00:00 UTC 以来的毫秒数(之前的时间为负数)。
Date
var today = new Date(); today.getTime(); // returns "1337217238392"
存储毫秒将允许您稍后读取和解析。值得一提的是查看date.js和moment.js