网页显示月份、日期、星期、时间代码 网页显示日期时间代码
<script language=JavaScript>
today=new Date();
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(
"星期日",
"星期一",
"星期二",
"星期三",
"星期四",
"星期五",
"星期六");
document.write(
"<font color=##000000 style='font-size:9pt;font-family: 宋体'> ",
today.getYear(),"年",
today.getMonth()+1,"月",
today.getDate(),"日",
d[today.getDay()+1],
"</font>" );
</script>
二、六种风格时间显示,一定有你喜欢的!
<SCRIPT language="javascript">
<!--
function initArray()
{
for(i=0;i<initArray.arguments.length;i++)
this[i]=initArray.arguments[i];
}
var isnMonths=new initArray("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");
var isnDays=new initArray("星期日","星期一","星期二","星期三","星期四","星期五","星期六","星期日");
today=new Date();
hrs=today.getHours();
min=today.getMinutes();
sec=today.getSeconds();
clckh=""+((hrs>12)?hrs-12:hrs);
clckm=((min<10)?"0":"")+min;clcks=((sec<10)?"0":"")+sec;
clck=(hrs>=12)?"下午":"上午";
var stnr="";
var ns="0123456789";
var a="";
function getFullYear(d)
{
yr=d.getYear();if(yr<1000)
yr+=1900;return yr;}
document.write("<table>");
//下面各行分别是一种风格,把不需要的删掉即可
document.write("<TR><TD>风格一:</TD><TD>"+isnDays[today.getDay()]+","+isnMonths[today.getMonth()]+""+today.getDate()+"日,"+getFullYear(today)+"年");
document.write("<TR><TD>风格二:</TD><TD>"+clckh+":"+clckm+":"+clcks+""+clck+"</TD></TR>");
document.write("<TR><TD>风格三:</TD><TD>"+isnDays[today.getDay()]+","+isnMonths[today.getMonth()]+""+today.getDate()+"日,"+getFullYear(today)+"年 "+clckh+":"+clckm+":"+clcks+""+clck+"</TD></TR>");
document.write("<TR><TD>风格四:</TD><TD>"+(today.getMonth()+1)+"/"+today.getDate()+"/"+(getFullYear(today)+"").substring(2,4)+"</TD></TR>");
document.write("<TR><TD>风格五:</TD><TD>"+hrs+":"+clckm+":"+clcks+"</TD></TR>");
document.write("<TR><TD VALIGN=TOP>风格六:</TD><TD>"+today+"</TD></TR>");
document.write("</table>");
//-->
</SCRIPT>
三、这个时钟是有影子的,而且还在不停地走着呢
<div id="bgclockshade"></div>
<div id="bgclocknoshade"></div>
<div id="mainbody">
</div>
<script language=javaScript>
<!--
function www_helpor_net() {
thistime= new Date()
var hours=thistime.getHours()
var minutes=thistime.getMinutes()
var seconds=thistime.getSeconds()
if (eval(hours) <10) {hours="0"+hours}
if (eval(minutes) < 10) {minutes="0"+minutes}
if (seconds < 10) {seconds="0"+seconds}
thistime = hours+":"+minutes+":"+seconds
if(document.all) {
bgclocknoshade.innerHTML=thistime
bgclockshade.innerHTML=thistime
}
if(document.layers) {
document.bgclockshade.document.write('<div id="bgclockshade">'+thistime+'</div>')
document.bgclocknoshade.document.write('<div id="bgclocknoshade">'+thistime+'</div>')
document.close()
}
var timer=setTimeout("www_helpor_net()",200)
}
www_helpor_net();
//-->
</script>
四、 数字化的时钟
<span id="liveclock" style"=width: 109px; height: 15px"></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' face='Arial black'>"+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>
五、动态时钟代码2,此代码相当简单
<SCRIPT>setInterval("jnkc.innerHTML=new Date().toLocaleString()+' 星期'+'日一二三四五六'.charAt (new Date().getDay());",1000);
</SCRIPT>
六、flash时钟,改变sz1.swf中的1为0、1、2、3、4、5、6,可以获得不同样式的时钟,你试试吧。
<EMBED SRC=http://www.kjsk.cn/kjsk/img/sz1.swf WIDTH=99 HEIGHT=99 wmode=transparent quality=high loop=true menu=false>
七、
<SCRIPT language=javascript>
<!--
calendar = new Date();
day = calendar.getDay();
month = calendar.getMonth();
date = calendar.getDate();
year = calendar.getYear();
if (year< 100) year = 1900 + year;
cent = parseInt(year/100);
g = year % 19;
k = parseInt((cent - 17)/25);
i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30;
i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));
j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7;
l = i - j;
emonth = 3 + parseInt((l + 40)/44);
edate = l + 28 - 31*parseInt((emonth/4));
emonth--;
var dayname = new Array ("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六");
var monthname =
new Array ("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月" );
document.write("<font color=006699>"+year +"年");
document.write(monthname[month]);
document.write(date + "日 ");
document.write(dayname[day]+" "+"</font>");
// January(1月份节日,以下同。)
if ((month == 11) && (date > 25) && (date < 31)) document.write("新的一年快到了");
if ((month == 0) && (date == 1)) document.write("今天是元旦");
if ((month == 0) && (date > 1) && (date < 6)) document.write("主显节快到了");
if ((month == 0) && (date == 6)) document.write("今天是主显节");
if ((month == 1) && (date > 9) && (date < 14)) document.write("情人节快到了");
if ((month == 1) && (date == 14)) document.write("今天是情人节");
if ((month == 2) && (date > 3) && (date < 8)) document.write("国际妇女节快到了");
if ((month == 2) && (date == 8)) document.write("今天是国际妇女节");
if ((month == 2) && (date > 8) && (date < 12)) document.write("植树节快到了");
if ((month == 2) && (date == 12)) document.write("今天是植树节");
if ((month == 2) && (date > 16) && (date < 21)) document.write("世界林业日快到了");
if ((month == 2) && (date == 21)) document.write("今天是世界林业日");
if ((month == 2) && (date > 17) && (date < 22)) document.write("复活节快到了");
if ((month == 2) && (date == 22)) document.write("今天是复活节开始日");
if ((month == 2) && (date > 22)) document.write("复活节期间");
if ((month == 2) && (date > 25) && (date < 31)) document.write("愚人节快到了");
if ((month == 3) && (date == 1)) document.write("今天是愚人节");
if ((month == 3) && (date > 1) && (date < 5)) document.write("清明节快到了");
if ((month == 3) && (date == 5)) document.write("今天是清明节");
if ((month == 3) && (date > 5) && (date < 7)) document.write("世界卫生日快到了");
if ((month == 3) && (date == 7)) document.write("今天是世界卫生日");
if ((month == 3) && (date > 18) && (date < 23)) document.write("世界气象日快到了");
if ((month == 3) && (date == 23)) document.write("今天是世界气象日");
if ((month == 3) && (date < 25)) document.write("复活节期间");
if ((month == 3) && (date == 25)) document.write("今天是复活节结束日");
if ((month == 3) && (date > 25) && (date < 31)) document.write("国际劳动节快到了");
if ((month == 4) && (date == 1)) document.write("今天是国际劳动节");
if ((month == 4) && (date > 1) && (date < 4)) document.write("中国青年节快到了");
if ((month == 4) && (date == 4)) document.write("今天是中国青年节");
if ((month == 4) && (date > 4) && (date < 8)) document.write("世界红十字日快到了");
if ((month == 4) && (date == 8)) document.write("今天是世界红十字日");
if ((month == 4) && (date > 8) && (date < 12)) document.write("国际护士节快到了");
if ((month == 4) && (date == 12)) document.write("今天是国际护士节");
if ((month == 4) && (date > 12) && (date < 17)) document.write("世界电信日快到了");
if ((month == 4) && (date == 17)) document.write("今天是世界电信日");
if ((month == 4) && (date > 25) && (date < 30)) document.write("国际儿童节和世界无烟日快到了");
if ((month == 4) && (date == 31)) document.write("今天是世界无烟日");
if ((month == 5) && (date == 1)) document.write("今天是国际儿童节");
if ((month == 5) && (date > 1) && (date < 5)) document.write("世界环境日快到了");
if ((month == 5) && (date == 5)) document.write("今天是世界环境日");
if ((month == 5) && (date > 18) && (date < 23)) document.write("国际奥林匹克日快到了");
if ((month == 5) && (date == 23)) document.write("今天是国际奥林匹克日");
if ((month == 5) && (date > 23) && (date < 26)) document.write("国际禁毒日快到了");
if ((month == 5) && (date == 26)) document.write("今天是国际禁毒日");
if ((month == 5) && (date > 26) && (date < 31)) document.write("中国共产党诞生纪念日和世界建筑节快到了");
if ((month == 6) && (date == 1)) document.write("今天是中国共产党诞生纪念日和世界建筑节");
if ((month == 6) && (date > 25) && (date < 31)) document.write("中国人民解放军建军节快到了");
if ((month == 7) && (date == 1)) document.write("今天是中国人民解放军建军节");
if ((month == 7) && (date > 8) && (date < 13)) document.write("左手节快到了");
if ((month == 7) && (date == 13)) document.write("今天是左手节");
if ((month == 8) && (date > 5) && (date < 10)) document.write("教师节快到了");
if ((month == 8) && (date == 10)) document.write("今天是教师节");
if ((month == 8) && (date > 13) && (date < 18)) document.write("日本侵华战争纪念日快到了");
if ((month == 8) && (date == 18)) document.write("今天是日本侵华战争纪念日");
if ((month == 8) && (date > 22) && (date < 27)) document.write("世界旅游日快到了");
if ((month == 8) && (date == 27)) document.write("今天是世界旅游日");
if ((month == 8) && (date > 25) && (date < 31)) document.write("中华人民共和国国庆节快到了");
if ((month == 9) && (date == 1)) document.write("今天是中华人民共和国国庆节");
if ((month == 9) && (date > 4) && (date < 9)) document.write("世界邮政日快到了");
if ((month == 9) && (date == 9)) document.write("今天是世界邮政日");
if ((month == 9) && (date > 11) && (date < 16)) document.write("世界粮食日快到了");
if ((month == 9) && (date == 16)) document.write("今天是世界粮食日");
if ((month == 10) && (date > 5) && (date < 10)) document.write("世界青年日快到了");
if ((month == 10) && (date == 10)) document.write("今天是世界青年日");
if ((month == 11) && (date > 5) && (date < 10)) document.write("世界人权日快到了");
if ((month == 11) && (date == 10)) document.write("今天是世界人权日");
if ((month == 11) && (date > 20) && (date < 25)) document.write("圣诞节快到了");
if ((month == 11) && (date == 25)) document.write("今天是圣诞节");
document.write("<br></font>");
//-->
</SCRIPT>
更多阅读
标点符号用法及数字、时间的表示方法 标点符号用法
标点符号用法及数字、时间的表示方法与数字、时间有关的表示方法 关于数字的用法,值得注意的是:我国有关规定近年来几经调整,目前最新确定的规范是《中华人民共和国国家标准·;出版物上数字用法的规定》。使用中应以新为宜,勿以旧规
律师解读交通事故伤残后申请交通事故评残和鉴定的程序、时间、期 交通事故伤残鉴定费用
处理道路交通事故人身损害赔偿案件,对当事人伤残等级的评定及其相关问题的鉴定是极为重要的,尤其是定残等级的高低及各种补偿期限的长短,直接关系到当事人赔偿金额的多少。例如伤残等级、合理休治时间、陪护期限及人数、营养补偿期限、
古代对“年龄、时间、死”的称谓 古代年龄称谓由小到大
古代对“年龄、时间、死”的称谓(2011-09-29 09:05:08)[ 标签: 文化分类: 推荐一、古代年龄称谓【襁褓】:不满周岁;【黄口】:本指雏鸟,后比喻幼儿,10岁以下;【总角、孩提】:幼年泛称;【垂髫、始龀】:童年泛称。髫(tiáo)、龀(chèn);【幼学】:10岁;【
最新、最全的QQ空间(图片)、透明FLASH 、空间代码 素材值 qq空间透明素材
最新、最全的QQ空间(透明FLASH)素材【值得收藏】◇ 个性的粒子急速波动特效_潮流空间必备透明FLASH(2010-09-07)◇ 个性透明FLASH素材_转动的鼠标,各种色彩(2010-08-31)◇ 波纹层层放大特效_QQ空间透明FLASH素材(2010-08-24)◇ 黑色个
从北京经五台山到太原路途短、时间少、路况好 太原到五台山包车
2012年国庆长假高速公路免费通行,决定驾着“马”车(普力马)回太原。这是打通北京到五台山高速公路后第一次走这条线。原来常走太旧高速,大车多、山路绕。也曾经走大同线,路途长、时间多。10月2日一大早7:20出发,7:40过杜家坎,免卡通过。沿