| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 933 人关注过本帖
标题:八种风格的时间显示!代码!!
只看楼主 加入收藏
风中情子
Rank: 1
等 级:新手上路
帖 子:61
专家分:0
注 册:2005-1-11
收藏
 问题点数:0 回复次数:0 
八种风格的时间显示!代码!!

风格一 星期三,12月8日,2004年 风格二12:30:33下午 风格三星期三,12月8日,2004年 12:30:33下午 风格四12/8/04 风格五:12:30:33 风格六:Wed Dec 8 12:30:33 UTC+0800 2004 风格七Microsoft Internet Explorer 风格八:4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322) 脚本说明: 第一步:把如下代码加入<head>区域中 <SCRIPT language=javascript author=luxiaoqing><!-- 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="";

//-->

</SCRIPT> 第二步:把如下代码加入区域中 <SCRIPT language=javascript><!-- function getFullYear(d){//d is a date object yr=d.getYear();if(yr<1000) yr+=1900;return yr;}document.write("<table width=486>");//don't delete this line

/* 每一段代表一种风格,不需要的删除即可*/

document.write("<TR><TD VALIGN=TOP><P>风格一<P></TD><TD VALIGN=TOP>"+isnDays[today.getDay()] +","+isnMonths[today.getMonth()]+""+today.getDate()+"日," +getFullYear(today)+"年<P>");document.write("<TR><TD VALIGN=TOP>风格二<P></TD><TD VALIGN=TOP>"+clckh+":"+clckm +":"+clcks+""+clck+"<P></TD></TR>");document.write("<TR><TD VALIGN=TOP>风格三<P></TD><TD VALIGN=TOP>" +isnDays[today.getDay()]+","+isnMonths[today.getMonth()]+"" +today.getDate()+"日,"+getFullYear(today)+"年 "+clckh+":"+clckm+":" +clcks+""+clck+"<P></TD></TR>");document.write("<TR><TD VALIGN=TOP>风格四<P></TD><TD VALIGN=TOP>" +(today.getMonth()+1)+"/"+today.getDate()+"/" +(getFullYear(today)+"").substring(2,4)+"<P></TD></TR>");document.write("<TR><TD VALIGN=TOP>风格五:<P></TD><TD VALIGN=TOP>"+hrs+":"+clckm+":"+clcks+"<P></TD></TR>");document.write("<TR><TD VALIGN=TOP>风格六:<P></TD><TD>"+today+"<P></TD></TR>");document.write("<TR><TD VALIGN=TOP>风格七<P></TD><TD>"+navigator.appName+"<P></TD></TR>");document.write("<TR><TD VALIGN=TOP>风格八:<P></TD><TD VALIGN=TOP>"+navigator.appVersion+"<P></TD></TR>");document.write("</table>"); // don't delete this line //-->

</SCRIPT>

搜索更多相关主题的帖子: 风格 代码 时间 
2005-01-13 10:24
快速回复:八种风格的时间显示!代码!!
数据加载中...
 
   



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

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