如何让网页显示当前时间 像:当前时间是:14:57PM

请给我简单的代码,谢谢了!... 请给我简单的代码,谢谢了! 展开
 我来答
手机用户62287
2011-03-07 · TA获得超过953个赞
知道小有建树答主
回答量:487
采纳率:0%
帮助的人:270万
展开全部
;/body>间
<script language="JavaScript">

today=new Date();
var hours = today.getHours();
var minutes = today.getMinutes();
var seconds = today.getSeconds();
var timeValue = "<FONT COLOR=black>" + ((hours >12) ? hours -12 :hours); timeValue += ((minutes < 10) ? "<BLINK><FONT COLOR=black>:</FONT></BLINK>0" : "<BLINK><FONT COLOR=black>:</FONT></BLINK>") + minutes+"</FONT></FONT>";
timeValue += (hours >= 12) ? "<FONT COLOR=blue><I><B>pm</B></I></FONT>" : "<FONT COLOR=blue><B><I>am</I></B></FONT>";
function initArray(){
this.length=initArray.arguments.length
for(var i=0;i<this.length;i++)
this[i+1]=initArray.arguments[i] }
var d=new initArray("<font color=RED>星期日","<font color=black>星期一","<font color=black>星期二","<font color=black>星期三","<font color=black>星期四","<font color=black>星期五","<font color=red>星期六"); document.write("<font color=black>",today.getYear(),"<font color=black>年","<font color=black>",today.getMonth()+1,"<font color=black>月","<font color=black>",today.getDate(),"<font color=black>日 </FONT>",d[today.getDay()+1]," ",timeValue); //-->
</script>
cnsncnet
2011-03-06 · TA获得超过4.2万个赞
知道小有建树答主
回答量:795
采纳率:68%
帮助的人:173万
展开全部
当前时间是:
<script>
function tick() {
var hours, minutes, seconds, xfile;
var intHours, intMinutes, intSeconds;
var today;
today = new Date();
intHours = today.getHours();
intMinutes = today.getMinutes();
intSeconds = today.getSeconds();
if (intHours == 0) {
hours = "12:";
xfile = "PM";
} else if (intHours < 12) {
hours = intHours+":";
xfile = "AM";
} else if (intHours == 12) {
hours = "12:";
xfile = "AM";
} else {
intHours = intHours - 12
hours = intHours + ":";
xfile = "PM";
}
if (intMinutes < 10) {
minutes = "0"+intMinutes+":";
} else {
minutes = intMinutes+":";
}
if (intSeconds < 10) {
seconds = "0"+intSeconds+" ";
} else {
seconds = intSeconds+" ";
}
timeString = hours+minutes+seconds+xfile;
Clock.innerHTML = timeString;
window.setTimeout("tick();", 100);
}
window.onload = tick;
</script>

<font id="Clock" align="center" style="font-size: 20; color:#000000"></font>
追问
…… 这些代码是直接放在head头部文件中,那如何让时间显示在我网页所需要的地方,在我需要它显示时间的地方怎样写代码?麻烦再给我讲讲,谢谢!
追答
放在里面 如:放到 这里
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式