网站时间显示

 

网站时间显示2

<STYLE>A.menuitem {}{ 
COLOR
: menutext; TEXT-DECORATION: none 
}
 
A.menuitem:hover 
{}{ 
COLOR
: highlighttext; BACKGROUND-COLOR: highlight 
}
 
DIV.contextmenu 
{}{ 
BORDER-RIGHT
: 2px outset; BORDER-TOP: 2px outset; Z-INDEX: 999; VISIBILITY: hidden; BORDER-LEFT: 2px outset; BORDER-BOTTOM: 2px outset; POSITION: absolute; BACKGROUND-COLOR: buttonface 
}
 

</STYLE> 
<SCRIPT language=JavaScript> 
function Year_Month()
var now = new Date(); 
var yy = now.getYear(); 
var mm = now.getMonth()+1
var cl = '<font color="#0000df">'
if (now.getDay() == 0) cl = '<font color="#c00000">'
if (now.getDay() == 6) cl = '<font color="#00c000">'
return(cl + yy + '' + mm + '月</font>'); }
 
function Date_of_Today()
var now = new Date(); 
var cl = '<font color="#ff0000">'
if (now.getDay() == 0) cl = '<font color="#c00000">'
if (now.getDay() == 6) cl = '<font color="#00c000">'
return(cl + now.getDate() + '</font>'); }
 
function Day_of_Today()
var day = new Array(); 
day[
0= "星期日"
day[
1= "星期一"
day[
2= "星期二"
day[
3= "星期三"
day[
4= "星期四"
day[
5= "星期五"
day[
6= "星期六"
var now = new Date(); 
var cl = '<font color="#0000df">'
if (now.getDay() == 0) cl = '<font color="#c00000">'
if (now.getDay() == 6) cl = '<font color="#00c000">'
return(cl + day[now.getDay()] + '</font>'); }
 
function CurentTime()
var now = new Date(); 
var hh = now.getHours(); 
var mm = now.getMinutes(); 
var ss = now.getTime() % 60000
ss 
= (ss - (ss % 1000)) / 1000
var clock = hh+':'
if (mm < 10) clock += '0'
clock 
+= mm+':'
if (ss < 10) clock += '0'
clock 
+= ss; 
return(clock); }
 
function refreshCalendarClock()
document.all.calendarClock1.innerHTML 
= Year_Month(); 
document.all.calendarClock2.innerHTML 
= Date_of_Today(); 
document.all.calendarClock3.innerHTML 
= Day_of_Today(); 
document.all.calendarClock4.innerHTML 
= CurentTime(); }
 
var webUrl = webUrl; 
document.write(
'<table border="0" cellpadding="0" cellspacing="0"><tr><td>'); 
document.write(
'<table id="CalendarClockFreeCode" border="0" cellpadding="0" cellspacing="0" width="60" height="70" '); 
document.write(
'style="position:absolute;visibility:hidden" bgcolor="#eeeeee">'); 
document.write(
'<tr><td align="center"><font '); 
document.write(
'style="cursor:hand;color:#ff0000;font-family:宋体;font-size:14pt;line-height:120%" '); 
if (webUrl != 'netflower')
document.write(
'</td></tr><tr><td align="center"><font '); 
document.write(
'style="cursor:hand;color:#2000ff;font-family:宋体;font-size:9pt;line-height:110%" '); 
}
 
document.write(
'</td></tr></table>'); 
document.write(
'<table border="0" cellpadding="0" cellspacing="0" width="61" bgcolor="#C0C0C0" height="70">'); 
document.write(
'<tr><td valign="top" width="100%" height="100%">'); 
document.write(
'<table border="1" cellpadding="0" cellspacing="0" width="58" bgcolor="#FEFEEF" height="67">'); 
document.write(
'<tr><td align="center" width="100%" height="100%" >'); 
document.write(
'<font id="calendarClock1" style="font-family:宋体;font-size:7pt;line-height:120%"> </font><br>'); 
document.write(
'<font id="calendarClock2" style="color:#ff0000;font-family:Arial;font-size:14pt;line-height:120%"> </font><br>'); 
document.write(
'<font id="calendarClock3" style="font-family:宋体;font-size:9pt;line-height:120%"> </font><br>'); 
document.write(
'<font id="calendarClock4" style="color:#100080;font-family:宋体;font-size:8pt;line-height:120%"><b> </b></font>'); 
document.write(
'</td></tr></table>'); 
document.write(
'</td></tr></table>'); 
document.write(
'</td></tr></table>'); 
setInterval(
'refreshCalendarClock()',1000); 
</SCRIPT>

 

网站时间显示
<DIV style="position:relative; top:0px; left:0px; width:80px; height:120px;  overflow: hidden">
<SCRIPT language=javascript>
function Year_Month(){  
    
var now = new Date();  
    
var yy = now.getYear();  
    
var mm = now.getMonth()+1;  
    
var cl = '<font color="#000000">';  
    
if (now.getDay() == 0) cl = '<font color="#000000">';  
    
if (now.getDay() == 6) cl = '<font color="#000000">';  
    
return(cl +  yy + '' + mm + '月</font>');  
}
  
 
function Date_of_Today(){  
    
var now = new Date();  
    
var cl = '<font color="#000000">';  
    
if (now.getDay() == 0) cl = '<font color="#000000">';  
    
if (now.getDay() == 6) cl = '<font color="#000000">';  
    
return(cl +  now.getDate() + '<b>日</b></font>');  
}
  
 
function Day_of_Today(){  
    
var day = new Array();  
    day[
0= "星期日";  
    day[
1= "星期一";  
    day[
2= "星期二";  
    day[
3= "星期三";  
    day[
4= "星期四";  
    day[
5= "星期五";  
    day[
6= "星期六";  
    
var now = new Date();  
    
var cl = '<font color="#000000">';  
    
if (now.getDay() == 0) cl = '<font color="#000000">';  
    
if (now.getDay() == 6) cl = '<font color="#000000">';  
    
return(cl +  day[now.getDay()] + '</font>');  
}
  
 
function CurentTime(){  
    
var now = new Date();  
    
var hh = now.getHours();  
    
var mm = now.getMinutes();  
    
var ss = now.getTime() % 60000;  
    ss 
= (ss - (ss % 1000)) / 1000;  
    
var clock = hh+':';  
    
if (mm < 10) clock += '0';  
    clock 
+= mm+':';  
    
if (ss < 10) clock += '0';  
    clock 
+= ss;  
    
return(clock);  
}
  
 
function refreshCalendarClock(){  
document.all.calendarClock1.innerHTML 
= Year_Month();  
document.all.calendarClock2.innerHTML 
= Date_of_Today();  
document.all.calendarClock3.innerHTML 
= Day_of_Today();  
document.all.calendarClock4.innerHTML 
= CurentTime();  
}
  
document.write(
'<table border="0" cellpadding="0" cellspacing="1" width="68" bgcolor="#000000" height="60">'); 
document.write(
'<tr><td width="100%" height="100%" align="center">'); 
document.write(
'<table border="0" cellpadding="0" cellspacing="0" width="100%" hight="100%" bgcolor="#f2f2f2" height="60">'); 
document.write(
'<tr><td align="center" width="100%" height="100%">'); 
document.write(
'<font id="calendarClock1" style="font-family:宋体;font-size:9pt"> </font><br>'); 
document.write(
'<font id="calendarClock2" style="font-family:Arial;font-size:14pt;Line-Height=100%"> </font><br>'); 
document.write(
'<font id="calendarClock3" style="font-family:宋体;font-size:9pt;Line-Height=100%"> </font><br>'); 
document.write(
'<font id="calendarClock4" style="color:#000000;font-family:Arial;font-size:8pt;Line-Height=100%"><b> </b></font>'); 
document.write(
'</td></tr></table>'); 
document.write(
'</td></tr></table>'); 
setInterval(
'refreshCalendarClock()',1000);
      
</SCRIPT></DIV>

转载于:https://www.cnblogs.com/craig/archive/2008/05/23/1205785.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/496817.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

直击2018AWE:智能语言交互大厮杀、老品牌争先搭建平台、第三方平台迅速崛起

来源&#xff1a;物联网智库一年一度家电盛宴&#xff0c;中国家电及消费电子博览会&#xff08;AWE&#xff09;在上海新国际博览中心拉开帷幕&#xff01;一大批智能家电产品不断发酵&#xff0c;白电、黑电、小家电等让人应接不暇。除了不断精进的颜值外&#xff0c;科技感更…

数据安全架构设计与实战~如何加密结构化数据

针对结构化数据&#xff08;数据库、key-value等&#xff09;&#xff0c;加密主要有两种方式&#xff1a; 1、应用层字段加密&#xff0c;数据在入库前加密&#xff0c;直接向数据库中写入字段密文&#xff1b; 2、存储系统透明加密&#xff08;静态加密&#xff09;&#x…

浙江大学吴朝晖:脑机融合系统综述

来源&#xff1a; 神经科技本文发表于《生命科学》&#xff08;Chinese Bulletin of Life Sciences&#xff09;第26卷 第6期 2014年6月DOI: 10.13376/j.cbls/2014090脑机融合系统综述吴朝晖*&#xff0c;俞一鹏&#xff0c;潘 纲&#xff0c;王跃明(浙江大学计算机科学与技术…

数据安全架构设计与实战~思维导图

#原图 System.out.println("https://www.processon.com/view/link/619cccede0b34d032a78237d");

apt-get、apt、yum、dpkg、rpm

apt-get 命令详解(中文)以及实例&#xff1a;http://blog.51yip.com/linux/1176.html linux yum命令详解&#xff1a;http://www.cnblogs.com/chuncn/archive/2010/10/17/1853915.html 配置 yum 源的两种方法&#xff1a;http://www.cnblogs.com/shuaixf/archive/2011/11/30/22…

下一版Win10,微软人工智能平台Windows ML要和你见面了

原作 Kam VedBratRoot 编译自 Windows blog量子位 出品 | 公众号 QbitAI今日&#xff0c;微软在开发者日上发布了AI开发者平台。微软还提到&#xff0c;旗下产品都可以本地直接处理AI任务。另外Win10系统将会Visual Studio 15.7 预览版上增加了ONNX文档到UWP应用里&#xff0c;…

为什么我们要使用HTTP Strict Transport Security?

HTTP Strict Transport Security (通常简称为HSTS) 是一个安全功能&#xff0c;它告诉浏览器只能通过HTTPS访问当前资源, 禁止HTTP方式。 001. Freebuf百科&#xff1a;什么是Strict-Transport-Security 我摘自owasp上的一段定义&#xff1a; HTTP Strict Transport Securit…

Python爬虫四(正则表达式)

菜鸟教程 之 python 正则表达式&#xff1a;http://www.runoob.com/python/python-reg-expressions.html python 官网正则文档&#xff1a;https://docs.python.org/2/library/re.html 1、正则表达式 简介 正则表达式 是对字符串操作的一种逻辑公式&#xff0c;就是用事先定义好…

量子霸权是个模糊的里程碑

来源&#xff1a;新华网就在人们纷纷猜测谷歌是否会在这场全球科技竞赛中夺魁时&#xff0c;美国斯坦福大学量子物理学家帕特里克海登&#xff18;日对新华社记者提出了一个新颖观点&#xff1a;“量子霸权是个模糊的里程碑。”美国谷歌公司日前发布&#xff17;&#xff12;量…

酸甜八宝粥

用javascript设置和读取cookie的简单例子请看下面用javascript设置和读取cookie的简单例子,现在的问题是,如果要设置的是一个cookie集,比如在cookie1集中有uname,uid两组信息,应该如何写呢? cookie("cookie1")("uname")"testuser"; cookie(&quo…

KMS的几个开源实现汇总

搜索关键词 open source key management server “key management server” ranger kms rotate keys decrypting KMIP 集中密钥工作流程 Centralized Encryption Key Management Server (KMS) | Townsend Security Keywhiz Keywhiz Gitee 极速下载/keywhiz - Gitee.co…

Python 爬虫学习 系列教程

Python爬虫 --- 中高级爬虫学习路线 &#xff1a;https://www.cnblogs.com/Eeyhan/p/14148832.html 看不清图时&#xff0c;可以把图片保存到本地在打开查看。。。 Python爬虫学习系列教程 From&#xff1a;https://cuiqingcai.com/1052.html 一、爬虫入门 1. Python爬虫入门一…

友盟分享小程序_在线学习应用“小打卡”小程序分享

目前疫情导致只能线上开学&#xff0c;多采用微信群或QQ群发布作业、打卡&#xff0c;结合直播平台在线授课。各科老师加入群&#xff0c;打卡及发布的作业、教师辅导信息容易覆盖同时不能记录下来。在以上应用不变的情况下&#xff0c;应用“小打卡”微信小程序可以很好的解决…

LeCun:现在还没有真正的AI系统,机器与生物系统差远了

安妮 编译自 NYU量子位 出品 | 公众号 QbitAI可能我们现在提到的AI都是假AI。近日&#xff0c;Facebook首席人工智能科学家Yann LeCun在纽约大学坦登工程学院的AI研讨会上谈了谈AI的历史和方向。研讨会上&#xff0c;LeCun提出人工神经网络的学习能力仍十分有限&#xff0c;还不…

Java并发编程实战~不安全的单例

不安全的单例 /*** 不安全的单例.<br>* author gqltt<br>* version 1.0.0 2020年4月7日<br>* see * since JDK 1.5.0*/ public class Singleton {// volatile 修饰保证安全.private static Singleton instance null;public static Singleton getInstance()…

于.net开发平台项目案例集锦

订阅 | 上一篇 | 下一篇 五味笔记 于.net开发平台项目案例集锦 作者:henq 日期:2007-09-14字体大小: 小 中 大基于.net开发平台项目案例集锦 经过微软.net Framework 2.0的革新&#xff0c;.net平台的开发越来越精彩。笔者收集基于.net开发的n个项目&#xff0c;一方面为新手提…

增大表名最大长度_风电叶片材料的发展变迁史,及风力发电机叶片长度发展历程...

2020年&#xff0c;能源领域最火的行业是风电&#xff0c;由于中国出台相关文件&#xff0c;截止12月31日为止&#xff0c;之后装机并网的风电机组将不能够获得电价补贴。这个政策直接推动了国内风电市场的短期井喷。当然宏观因素背景是中国对于环保型电力能源的改革步伐在加快…

重磅,Intel考虑收购博通

来源&#xff1a;腾讯科技概要&#xff1a;3月10日消息&#xff0c;据外媒报道&#xff0c;《华尔街日报》援引知情人士的话报道称&#xff0c;英特尔&#xff08;Intel&#xff09;正在考虑一系列收购方案&#xff0c;包括收购芯片制造商博通&#xff08;Broadcom&#xff09;…

Java并发编程实战~volatile

禁用CPU 缓存 告诉编译器&#xff0c;对这个变量的读写&#xff0c;不能使用 CPU 缓存&#xff0c;必须从内存中读取或者写入 /*** TODO 在此写上类的相关说明.<br>* author gqltt<br>* version 1.0.0 2020年4月8日<br>* see * since JDK 1.5.0*/ public c…

如何在SQL Server 2005中还原数据库

还原数据库的方式 有几种数据库备份的方式就将会有几种还原数据库的 方式&#xff1a; l 完整备份的还原&#xff1a;无论是完整备份、差异备份还是事务日志备份的还原&#xff0c;在第一步都要先做完整备份的还原。完整备份的还原只需要还原完整备份文件即可。 l 差异备份的还…