Site Notice

hello, world

Time

From Project-EPB Commons
Revision as of 14:34, 5 January 2020 by 机智的小鱼君 (talk | contribs) ([InPageEdit] 没有编辑摘要)

time <html><script> function time() {

var now = new Date(),
         y = now.getFullYear(), m = Number(now.getMonth() + 1), d = Number(now.getDate());
         if (m < 10) m = '0' + m;
         if (d < 10) d = '0' + d;
         var time1 = y + '-' + m + '-' + d;
 $("#time").text(time1);

} </script> </html>