《
网页特效代码 JavaScript显示系统时间》文章地址:http://www.tfxk.com/wangyesheji/jianzhanjingyan/030234K52013.htm
--> [
网站建设之]网页殊效代码:JavaScript显示体系时间
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns="
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JavaScript 时光显示</title>
</head>
<body>
<span id=localtime></span>
<script type="text/javascript">
function showLocale(objD)
{
var str,colorhead,colorfoot;
var yy = objD.getYear();
if(yy<1900) yy = yy+1900;
var MM = objD.getMonth()+1;
if(MM<10) MM = '0' + MM;
var dd = objD.getDate();
if(dd<10) dd = '0' + dd;
var hh = objD.getHours();
if(hh<10) hh = '0' + hh;
var mm = objD.getMinutes();
if(mm<10) mm = '0' + mm,
网页滚动条代码;
var ss = objD,
网页滑动切换特效 采用AJAX刷新和CSS切换.getSeconds();
if(ss<10) ss = '0' + ss,
网页添加CSS样式表的四种方式;
var ww = objD.getDay();
if ,
网页注册表单设计原则; ( ww==0 ) colorhead="<font color=\"#FF0000\">";
if ( ww > 0 && ww < 6 ) colorhead="<font color=\"#373737\">";
if ( ww==6 ) colorhead="<font color=\"#008000\">";
if (ww==0) ww="日曜日";
if (ww==1) ww="星期一";
if (ww==2) ww="星期二";
if (ww==3) ww="星期三",
网页标准之争;;
if (ww==4) ww="木曜日";
if (ww==5) ww="星期五";
if (ww==6) ww="礼拜六";
colorfoot="</font>"
str = colorhead + yy + "-" + MM + "-" + dd + " " + hh + ":" + mm + ":" + ss + " " + ww + colorfoot;
return(str);
}
function tick()
{
var today;
today = new Date();
document.getElementById("localtime").innerHTML = showLocale(today);
window.setTimeout("tick()", 1000);
}
tick();
</script>
</body>
</html>
Tag:系统 时间 显示 代码
(责任编辑:网站建设)
网页特效代码 JavaScript显示系统时间相关文章