⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 top.jsp

📁 Jbuilder2006开发的严格按MVC设计模式组织开发过程
💻 JSP
字号:
<%@page contentType="text/html; charset=GBK"%>
<html>
<head>
<title>top</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
  .style2 {
  font-size: 12px;
  color: #FFFFFF;
  }
  .style3 {font-size: 12px;color: #6666FF}
  .style4 {font-size: 12px;color: #CCCCCC}
  .style5 {font-size: 12px}
  .STYLE6 {font-size: 9pt}
</style>
<script language="JavaScript" type="">
var timerID = null;
var timerRunning = false;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;}
function startclock () {
stopclock();
showtime();}
function showtime () {
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
var timeValue = now.getYear()+"年"+(now.getMonth()+1)+"月"+now.getDate()+"日" +((hours >= 12) ? " 下午 " : " 上午 " )
timeValue += ((hours >12) ? hours -12 :hours)
timeValue += ((minutes < 10) ? ":0" : ":") + minutes
timeValue += ((seconds < 10) ? ":0" : ":") + seconds
document.all.thetime.innerHTML = timeValue;
timerID = setTimeout("showtime()",1000);
timerRunning = true;}
</script>
<script language="javascript" src="<%=request.getContextPath()%>/_normal/script/common.js" type="text/javascript"></script>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="showtime()">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="272" height="98" background="<%=request.getContextPath()%>/_normal/top_img/top2_01.jpg" valign="top">    </td>
    <td valign="top">
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td height="98" background="<%=request.getContextPath()%>/_normal/top_img/top2_02.jpg">            &nbsp;
            <div class="bgcolor9 f12w STYLE6" id="tbMsg" style="display:none;position:absolute; top:18px; padding:6px; border:1px solid #666; width:150px; left: 436px; background-color: #F0F0F0; layer-background-color: #F0F0F0;">
              <span id="msg" align="center">数据加载中,请稍候...</span>
            </div>
            <div align="center" style="color:#6666FF;font:bold"><br />
              <span id="thetime" align="center"></span></div>
          </td>
        </tr>
      </table>
    </td>
    <td width="255" background="<%=request.getContextPath()%>/_normal/top_img/top2_03.jpg">    </td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -