码迷,mamicode.com
首页 > 编程语言 > 详细

javascript jsp页面动态显示系统时间 测试可用 多浏览器通过测试 (2)

时间:2014-09-15 14:23:29      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:测试   浏览器   动态显示时间   

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'MyJsp.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  <script language="javascript">
	function nowTime(ev,type){
	/*
	 * ev:显示时间的元素
	 * type:时间显示模式.若传入12则为12小时制,不传入则为24小时制
	 */
	//年月日时分秒
	var Y,M,D,W,H,I,S;
	//月日时分秒为单位时前面补零
	function fillZero(v){
	if(v<10){v='0'+v;}
	return v;
	}
	(function(){
	var d=new Date();
	var Week=['星期天','星期一','星期二','星期三','星期四','星期五','星期六'];
	Y=d.getFullYear();
	M=fillZero(d.getMonth()+1);
	D=fillZero(d.getDate());
	W=Week[d.getDay()];
	H=fillZero(d.getHours());
	I=fillZero(d.getMinutes());
	S=fillZero(d.getSeconds());
	//12小时制显示模式
	if(type && type==12){
	//若要显示更多时间类型诸如中午凌晨可在下面添加判断
	if(H<=12){
	H='上午'+H;
	}else if(H>12 && H<24){
	H-=12;
	H='下午'+fillZero(H);
	}else if(H==24){
	H='下午00';
	}
	}
	ev.innerHTML=Y+'年'+M+'月'+D+'日 '+''+W+''+H+':'+I+':'+S;
	//每秒更新时间
	setTimeout(arguments.callee,1000);
	})();
	}
</script>
  <body onload="nowTime(nowtime,24);">
    <p id="nowtime"></p>
  </body>
</html>

javascript jsp页面动态显示系统时间 测试可用 多浏览器通过测试 (2)

标签:测试   浏览器   动态显示时间   

原文地址:http://blog.csdn.net/responsecool/article/details/39291383

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!