SQLite中的时间日期函数这是我学习SQLite时做的笔记,参考并翻译了Chris Newman写的<SQLite>中的<Working with Dates and Times>部分内容.SQLite包含了如下时间/日期函数:datetime().......................产生日期和时间date()...........................产生日期time()...........................产生时间strftime()....…
1.最基本的日期操作 var mydate = new Date(); set/get FullYear,Month,Date,Hour,Minutes,Second可以随意拼接 toLocaleDateString,toLocaleTimeString,toLocaleString可以获取时间字符串 2.前1天,后1天.. function getNextDay(currentDate, scaleStep) { var nextDate = new Date(currentDate);…