| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 540 人关注过本帖
标题:[求助]为什么我的程序不能显示时钟
只看楼主 加入收藏
非凡DZ
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2007-4-6
收藏
 问题点数:0 回复次数:1 
[求助]为什么我的程序不能显示时钟

以下是我的一段程序,为什么时钟不能显示呢,请高手指点,谢谢

<html>
<head>
<title>时间问候</title>
<script language="javascript">
<!--
function disptime()
{
var now=new Date();
var year=now.getYear();
var month=now.getMonth();
var date=now.getDate();
var day=now.getDay();

var hour=now.getHours();
var minute=now.getMinutes();
var second=now.getSeconds();
document.write("今天是" +year+ "年" + month+ "月" +date+ "日"+" ");
switch(day)
{
case 0:
document.write("星期日");
break;
case 1:
document.write("星期一");
break;
case 2:
document.write("星期二");
break;
case 3:
document.write("星期三");
break;
case 4:
document.write("星期四");
break;
case 5:
document.write("星期五");
break;
case 6:
document.write("星期六");
break;
}
if(hour>=0 && hour<=12)
document.write(" 大家上午好!");
if(hour>12 && hour<=18)
document.write(" 大家下午好!");
if(hour>18 && hour<24)
document.write(" 大家晚上好!");
if(minute<10)
minute="0"+minute;
if(second<10)
second="0"+second;
document.myform.myclock.value=hour+":"+minute+":"+second;
var myTime=setTimeout("disptime()",1000);
}
-->
</script>
<style type="text/css">
<!--
input
{
font-size:15px;
color:red;
border-style:none
}
-->
</style>
</head>
<body onload="disptime()">
<br>
<br>
<form name="myform">
<input name="myclock" type="text" value="" size="15">
</form>
</body>
</html>

搜索更多相关主题的帖子: 时钟 
2007-04-20 17:35
lmhllr
Rank: 8Rank: 8
等 级:贵宾
威 望:44
帖 子:1504
专家分:42
注 册:2005-5-12
收藏
得分:0 

哪有这样写的


<html>
<head>
<title>时间问候</title>
<script language=\"javascript\">
<!--
function disptime()
{
var now=new Date();
var year=now.getYear();
var month=now.getMonth()+1;
var date=now.getDate();
var day=now.getDay();

var hour=now.getHours();
var minute=now.getMinutes();
var second=now.getSeconds();
switch(day)
{
case 0:
day=\"星期日\";
break;
case 1:
day=\"星期一\";
break;
case 2:
day=\"星期二\";
break;
case 3:
day=\"星期三\";
break;
case 4:
day=\"星期四\";
break;
case 5:
day=\"星期五\";
break;
case 6:
day=\"星期六\";
break;
}
if(hour>=0 && hour<=12)
sayHello=\" 大家上午好!\";
if(hour>12 && hour<=18)
sayHello=\" 大家下午好!\";
if(hour>18 && hour<24)
sayHello=\" 大家晚上好!\";
if(minute<10)
minute=\"0\"+minute;
if(second<10)
second=\"0\"+second;
document.getElementById(\"show\").innerHTML=\"今天是\" +year+ \"年\" + month+ \"月\" +date+ \"日 \"+sayHello;
document.myform.myclock.value=hour+\":\"+minute+\":\"+second;
setTimeout(\"disptime()\",1000);
}
-->
</script>
<style type=\"text/css\">
<!--
input
{
font-size:15px;
color:red;
border-style:none
}
-->
</style>
</head>
<body onload=\"disptime()\">
<br>
<br>
<label id=\"show\"></label>
<form name=\"myform\">
<input name=\"myclock\" type=\"text\" value=\"\" size=\"15\">
</form>
</body>
</html>

2007-04-21 11:27
快速回复:[求助]为什么我的程序不能显示时钟
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037470 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved