时间:2021-05-26
本文实例为大家分享了html获取系统当前时间的具体代码,供大家参考,具体内容如下
<html><head><STYLE>TD {FONT-SIZE: 12px; COLOR: #ffffff; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif}</STYLE><SCRIPT language=JavaScript>function tick() {var years,months,days,hours, minutes, seconds;var intYears,intMonths,intDays,intHours, intMinutes, intSeconds;var today;today = new Date(); //系统当前时间intYears = today.getFullYear(); //得到年份,getFullYear()比getYear()更普适intMonths = today.getMonth() + 1; //得到月份,要加1intDays = today.getDate(); //得到日期intHours = today.getHours(); //得到小时 intMinutes = today.getMinutes(); //得到分钟intSeconds = today.getSeconds(); //得到秒钟years = intYears + "-"; if(intMonths < 10 ){months = "0" + intMonths +"-";} else {months = intMonths +"-";}if(intDays < 10 ){days = "0" + intDays +" ";} else {days = intDays + " ";}if (intHours == 0) {hours = "00:";} else if (intHours < 10) {hours = "0" + intHours+":";} else {hours = intHours + ":";}if (intMinutes < 10) {minutes = "0"+intMinutes+":";} else {minutes = intMinutes+":";}if (intSeconds < 10) {seconds = "0"+intSeconds+" ";} else {seconds = intSeconds+" ";}timeString = years+months+days+hours+minutes+seconds;Clock.innerHTML = timeString;window.setTimeout("tick();", 1000);}window.onload = tick;</SCRIPT></head><BODY leftMargin=0 topMargin=0 marginwidth="0" marginheight="0"><TABLE cellSpacing=0 cellPadding=0 width="100%" border=0><TR bgColor=#73a3d4 height=40><TD noWrap align=right width=209 ><SPAN id="Clock"></SPAN></TD></TR></TABLE></BODY></HTML>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
js获取当前系统时间 代码如下:varmyDate=newDate();myDate.getYear();//获取当前年份(2位)myDate.getFu
获取当前时间首先,在要获取时间的.js文件中加载util.js文件然后在onload方法中,调用util.js中的formatTime方法获取当前时间//获取当
下面是Js获取当前的日期和时间的代码:获取当前时间/***获取当前时间*format=1精确到天*format=2精确到分*/functiongetCurr
sqlserver发送html格式的邮件,参考代码如下:DECLARE@tableHTMLNVARCHAR(MAX);--获取当前系统时间,和数据统计的时间se
前端js获取当前时间的方法:vartime=newDate();time.getYear();//获取当前年份time.getFullYear();//获取