要一个js 只显示时分秒 在label里调用的函数 body里不能加onload事件 在线等 只要我这能用 追加悬赏
BODY不能加onload事件!鄙视1楼 题都没读完
js动态显示时间只要时分秒
答案:1 悬赏:40 手机版
解决时间 2021-02-16 05:09
- 提问者网友:沉默的哀伤
- 2021-02-16 00:36
最佳答案
- 五星知识达人网友:duile
- 2021-02-16 02:07
<html>
<head>
<title>setTimeout()</title>
<style type="text/css">
input
{
font-size:30px;
border-style:none;
background-color:#ff8b3b;
}
</style>
</head>
<body onLoad="disptime()">
<form name="myform" >
<table width="100%" border="0" align=center>
<tr>
<td width="37%"> </td>
<td width="41%"><h2>当前时间:<input name="myclock" type="text" value=" " size="10"></h2></td>
<td width="22%"> </td>
</tr>
</table>
</form>
</body>
</html>
<script type="text/javascript">
function disptime()
{
var time=new Date();
var hour=time.getHours();
var minute=time.getMinutes();
var second=time.getSeconds();
document.myform.myclock.value=hour+":"+minute+":"+second+" ";
var myTime=setTimeout("disptime()",1000);
}
</script>
我刚刚写的
<head>
<title>setTimeout()</title>
<style type="text/css">
input
{
font-size:30px;
border-style:none;
background-color:#ff8b3b;
}
</style>
</head>
<body onLoad="disptime()">
<form name="myform" >
<table width="100%" border="0" align=center>
<tr>
<td width="37%"> </td>
<td width="41%"><h2>当前时间:<input name="myclock" type="text" value=" " size="10"></h2></td>
<td width="22%"> </td>
</tr>
</table>
</form>
</body>
</html>
<script type="text/javascript">
function disptime()
{
var time=new Date();
var hour=time.getHours();
var minute=time.getMinutes();
var second=time.getSeconds();
document.myform.myclock.value=hour+":"+minute+":"+second+" ";
var myTime=setTimeout("disptime()",1000);
}
</script>
我刚刚写的
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯