-
毫秒 var q=c.getMilliseconds(); if(q<10)//因为毫秒为一位数时只占一个字符位置,会让毫秒二字变动位置 { q="00"+c.getMilliseconds(); } if(q>=10 && q<100)//因为毫秒为两位数时只占两个字符位置,会让毫秒二字变动位置 { q="0"+c.getMilliseconds(); } 实战的改为 var ms = nowtime.getMilliseconds();查看全部
-
//这里不能用else 如果加了 i<10的情况下就没有返回值了查看全部
-
javascript Date()查看全部
-
parseInt()//取整 d/(60*60)得到小时数,再模24,相当于得到除以24后得的余数,也就是除了天以外的剩下的小时数查看全部
-
var curtime = new Date();//getTime()得到当前毫秒数; var endtime = new Date("2018,6,6"); (endtime.getTime()-curtime.getTime())/(24*60*60*1000); Math.ceil()向上取整查看全部
-
限时抢查看全部
-
计时器查看全部
-
倒计时效果查看全部
-
Mark查看全部
-
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> window.onload=function() { var nowDate = new Date(); var welDate = new Date("2018,06,23"); var leftTime = welDate.getTime() - nowDate.getTime() ; document.getElementById('djs').innerHTML = Math.ceil(leftTime/(24*60*60*1000)); } </script> <p id="djs"></p> </body> </html>查看全部
-
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script> window.onload=function() { setTimeout(showTime) } function bl(n) { if(n<10) { return "0"+n; } else { return ""+n; } } function showTime(){ var oTm = document.getElementById('tm'); var myDate = new Date(); var year = myDate.getFullYear(); // 年 var month = myDate.getMonth()+1; // 月 var date = myDate.getDate(); // 日 var hours = myDate.getHours(); // 时 var minutes = myDate.getMinutes(); // 分 var seconds = myDate.getSeconds(); // 秒 var day = myDate.getDay(); // 星期 var week = ["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]; oTm.innerHTML = year+"年"+month+"月"+date+"日"+bl(hours)+"时"+bl(minutes)+"分"+bl(seconds)+"秒"+week[day]; setTimeout(showTime,500); } </script> </head> <body> <p id="tm"></p> </body> </html>查看全部
-
Date对象的方法查看全部
-
window.onload = function() { function check(arg) { return arg >= 10 ? arg : "0" + arg; } var now = new Date(); document.getElementById("clock").innerHTML = now.getFullYear() + "年" + (now.getMonth() + 1) + "月" + now.getDate() + "日" + " " + "星期" + "日一二三四五六".charAt(now.getDay()) + now.getHours() + ":" + check(now.getMinutes()) + ":" + check(now.getSeconds()); setTimeout(window.onload, 1000); };查看全部
-
js时间查看全部
-
var date=new Date() getDate();getDay();getHours();getMinutes();getMonth();getSeconds();getTime(); getYear();getFullYear();查看全部
举报
0/150
提交
取消