在网页中显示动态时钟。(setTimeout)小时、分钟、秒数都表示为两位符号在此基础上,将24小时制转换成

如题所述

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<script type="text/javascript">
var myHours="";
var myMinutes="";
var mySeconds="";
function setTime(){
mydate=new Date();
myHours = parseInt(mydate.getHours())<10?"0"+mydate.getHours():(parseInt(mydate.getHours())<12?mydate.getHours():parseInt(mydate.getHours())-12);
myMinutes = parseInt(mydate.getMinutes())<10?"0"+mydate.getMinutes():mydate.getMinutes();
mySeconds = parseInt(mydate.getSeconds())<10?"0"+mydate.getSeconds():mydate.getSeconds();
document.getElementById("time").innerHTML=myHours+":"+myMinutes+":"+mySeconds;
setInterval(setTime,1000);
}
</script>
</head>
<body onload="setTime()">
<div id="time"></div>
</body>
</html>
温馨提示:内容为网友见解,仅供参考
无其他回答

...分钟、秒数都表示为两位符号在此基础上,将24小时制转换成
<body onload="setTime()"> <div id="time"><\/div> <\/body> <\/html>

在网页中显示动态时钟。(setTimeout)小时、分钟、秒数都表示为两位符号...
document.form.myclock.value=hour+":"+minute+":"+second+"";var mytime=setTimeout("disptime()",1000);} <\/script> <!--设定显示时间的文本框样式--> <style type="text\/css"> <!--设定显示时间的文本框样式 .inputStyle{ font-size: 30px;background-color: #FF6600;border-style...

在网页中显示动态时钟。(setTimeout)小时、分钟、秒数都表示为两位符号...
var ss =t.getSeconds();\/\/显示星期 var xingqi = t.getDay();\/\/判断小时hour大于12为下午,否则为上午 var sx =(hour>12?"下午":"上午");var cuurTime= year +"年"+month+"月"+"-"+day +" "+hour+"时"+mm+"分"+ss+"秒"+sx+"星期"+xingqi;\/\/找到指定id并赋值 documen...

网页中显示动态时钟。(setTimeout)小时、分钟、秒数都表示为两位符号...
time.text=h+":"+m+":"+s;

求在HTML页上显示动态标准时间代码
the_timeout= setTimeout('displayTime();',500); \/\/每半秒钟执行一次该函数,即500毫秒 } function fixTime(the_time) { if (the_time <10) { the_time = "0" + the_time; } return the_time; } <\/script> 附 一个更酷的时钟原代码 <html> <body bgcolor=#3A6EA5> <p><b>用JavaScript...

在javascript中 怎么实现网页打开 时间动态显示
} if(second<10){ second="0"+second;} document.getElementById("t").value=hour+":"+minute+":"+second;setTimeout("showTime()",1000);} <\/script> <\/head> <body onLoad="showTime()"> 现在时间:<INPUT id="t" name="time" type="text" size="10"> <\/body> <\/html> ...

请问各位高手怎样在自己的网站中插入动态的时钟?
网页上的时钟要用Javascript做的,或者是有些由FLASH文件做成的。<body onLoad="startit()"> <script LANGUAGE="javascript"> <!-- var isn1=null;var isn2=false;today=new Date();function stopit(){ if(isn2){ clearTimeout(isn1);} isn2=false;} function startit(){ stopit();isn...

javascript小时钟t=setTimeout('startTime()',500)为什么隔500毫秒就...
对于这个问题,只要刷新时间小于1秒,都是可以的。这样可以及时更新秒数。这里的setTimeout是递归执行的。也就是在执行一次后,时间更新以后,才会设置下次的setTimeout。这里执行更新时间的代码也是要耗费时间的。因为javascript是脚本语言,又基于浏览器,性能比较差。而且更新时间是dom操作,比较慢。所以这样...

DOS 命令符都有哪些?
3格式:TIME[hh:mm:ss:xx]4使用说明:(1)省略[hh:mm:ss:xx],显示系统时间并提示输入新的时间,不修改则可直接按回车键,[hh:mm:ss:xx]为“小时:分钟:秒:百分之几秒”格式;(2)当机器开始启动时,有自动处理文件(AUTOEXEC.BAT)被执行,则系统不提示输入系统日期。否则,提示输入新日期和时间。(五)MEM查看...

javascript动态时钟 IE中不能动态显示,而在谷歌浏览器中却能,下面是...
好像IE不支持document.open()\/document.close()另外,setInterval() 方法可按照指定的周期(以毫秒计)来调用函数或计算表达式 不需要通过setTimeout来调用自身,这部分代码在FF下也有问题,因为在函数内部调用自己,当自身还没有声明完成时,会有问题的。时间哪部分没有问题呀,你用下面的测试代码试一试:...

相似回答