- 19
- 0
- 约1.42万字
- 约 13页
- 2017-02-08 发布于北京
- 举报
显示时间代码和倒计代时码大全
网页显示时间代码和倒计时代码大全:
SCRIPT language=JavaScript
var enabled = 0; today = new Date();
var day; var date;
if(today.getDay()==0) day = 星期日
if(today.getDay()==1) day = 星期一
if(today.getDay()==2) day = 星期二
if(today.getDay()==3) day = 星期三
if(today.getDay()==4) day = 星期四
if(today.getDay()==5) day = 星期五
if(today.getDay()==6) day = 星期六
document.fgColor = cadet;
date1 = font size=5 face=宋体 color=0000ff + (today.getYear()) + 年 + (today.getMonth() + 1 ) + 月 + today.getDate() + 日 + /font;
date2 = font size=5 face=宋体 color=ff0000 + day + /font;
document.write(center + date1.fontsize(2) + date2.fontsize(2) + /center);
/SCRIPT
P class=t_msgfont align=centerBRSPAN id=liveclock 15px? height: 109px; style?=width:FONT color=#ff0f00 size=517:47:26/FONT/SPAN
SCRIPT language=javascript
function www_helpor_net()
{
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
if(minutes=9)
minutes=0+minutes
if(seconds=9)
seconds=0+seconds
myclock=font size=5 color=0000ff+hours+:+minutes+:+seconds+/font
if(document.layers){document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
}else if(document.all)
liveclock.innerHTML=myclock
setTimeout(www_helpor_net(),1000)
}
www_helpor_net();
//--
/SCRIPT
中文显示的时候保存为.js文件再用网页调用出现乱码。用uft-8编码保存.js文件即可解决乱码问题。
分割线
实时游走的数字时钟
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 = 午夜;
} else if (intHours 12) {
hours = intHours+:;
xfile = 上午;
} else if (intHours == 12) {
hours = 12:;
xfile = 正午;
} else {
intHours = intHours - 12
hours = intHours + :;
xfile = 下午;
}
if (intMinutes 10) {
minutes = 0+intMinutes+:;
} else {
minutes = intMinutes+:;
}
if (intSeconds 10) {
seconds =
原创力文档

文档评论(0)