会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
雁过请留痕...
代码改变世界
Cnblogs
Dashboard
Login
Home
Contact
Gallery
Subscribe
RSS
学无止境
程序员一定要有上进心,耐得住寂寞。
js 显示当前时间代码
2011-09-20 17:07
xiashengwang
阅读(
343
) 评论(
0
)
编辑
收藏
举报
js代码
function showTime(ele) { var d = new Date(); var year = d.getFullYear(); var month = d.getMonth(); var day = d.getDate(); var hour = d.getHours(); var mm = d.getMinutes(); var ss = d.getSeconds(); var strDate = year+"/" ; if(month<10) strDate +='0'; strDate += month +"/"; if(day<10) strDate += '0'; strDate += day; strDate += " "; if(hour<10) strDate += '0'; strDate += hour; strDate += ":"; if(mm<10) strDate += '0'; strDate += mm; strDate += ":"; if(ss<10) strDate += '0'; strDate += ss; document.getElementById(ele).innerHTML = strDate; } var id; function startTime(ele) { id = setInterval(showTime,1000,ele) } function stopTime() { if(id) { clearInterval(id); } }
html:
<p > 当前时间:<span id ='time'>goole!!!!!</span> </p> <input type="button" name="kutei" value="start" onclick="startTime('time')"> <input type="button" name="kutei" value="stop" onclick="stopTime()">
刷新页面
返回顶部
About