time.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8" %>
  2. <%@ page import = "cn.js.fan.util.*"%>
  3. <%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
  4. <HTML>
  5. <title> <lt:Label res="res.label.time.menu" key="select_time"/> </title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <script>
  8. function onOk() {
  9. window.returnValue = "";
  10. }
  11. </script>
  12. <style>
  13. *{
  14.  font:12px;
  15.  letter-spacing:0px;
  16. }
  17. body{
  18.  background-color:#E5E9F2;
  19.  overflow:hidden;
  20.  margin:0;
  21.  border:0px;
  22. }
  23. #titleYear{
  24.  text-align:center;
  25.  padding-top:3px;
  26.  width:120px;
  27.  height:20px;
  28.  border:solid #E5E9F2;
  29.  border-width:0px 1px 1px 0px;
  30.  background-color:#A4B9D7;
  31.  color:#000;
  32.  cursor:default;
  33. }
  34. #weekNameBox{
  35.  width:282px;
  36.  border-bottom:0;
  37. }
  38. .weekName{
  39.  text-align:center;
  40.  padding-top:4px;
  41.  width:40px;
  42.  height:20px;
  43.  border:solid #E5E9F2;
  44.  border-width:0px 1px 1px 0px;
  45.  background-color:#C0D0E8;
  46.  color:#243F65;
  47.  cursor:default;
  48. }
  49. .controlButton{
  50.  font-family: Webdings;
  51.  font:9px;
  52.  text-align:center;
  53.  padding-top:2px;
  54.  width:40px;
  55.  height:20px;
  56.  border:solid #E5E9F2;
  57.  border-width:0px 1px 1px 0px;
  58.  background-color:#A4B9D7;
  59.  color:#243F65;
  60.  cursor:default;
  61. }
  62. .Ctable{
  63.  width:282px;
  64.  margin-bottom:20px;
  65. }
  66. .Ctable span{
  67.  font:9px verdana;
  68.  font-weight:bold;
  69.  color:#243F65;
  70.  text-align:center;
  71.  padding-top:4px;
  72.  width:40px;
  73.  height:26px;
  74.  border:solid #C0D0E8;
  75.  border-width:0px 1px 1px 0px;
  76.  cursor:default;
  77. }
  78. .Cdate{
  79.  background-color:#E5E9F2;
  80. }
  81. .Ctable span.OtherMonthDate{
  82.  color:#999;
  83.  background-color:#f6f6f6;
  84. }
  85. .selectBox{
  86.  cursor:hand;
  87.  font:9px verdana;
  88.  width:80px;
  89.  position:absolute;
  90.  border:1px solid #425E87;
  91.  overflow-y:scroll;
  92.  overflow-x:hidden;
  93.  background-color:#fff;
  94.  FILTER:progid:DXImageTransform.Microsoft.Shadow(Color=#999999,offX=10,offY=10,direction=120,Strength=5);
  95.  SCROLLBAR-FACE-COLOR: #E5E9F2;
  96.  SCROLLBAR-HIGHLIGHT-COLOR: #E5E9F2;
  97.  SCROLLBAR-SHADOW-COLOR: #A4B9D7; 
  98.  SCROLLBAR-3DLIGHT-COLOR: #A4B9D7; 
  99.  SCROLLBAR-ARROW-COLOR:  #000000; 
  100.  SCROLLBAR-TRACK-COLOR: #eeeee6; 
  101.  SCROLLBAR-DARKSHADOW-COLOR: #ffffff;
  102. }
  103. .selectBox nobr{
  104.  padding:0px 0px 2px 5px;
  105.  width:100%;
  106.  color:#000;
  107.  letter-spacing:2px;
  108.  text-decoration:none;
  109. }
  110. .STYLE1 {
  111. color: #FFFFFF;
  112. font-weight: bold;
  113. }
  114. </style>
  115. <body onselectstart="return false">
  116. <table width="260" height="105" border="0" cellpadding="0" cellspacing="0">
  117.   <tr>
  118.     <td height="24" colspan="3" align="center" bgcolor="#7C93D3"><span class="STYLE1"><lt:Label res="res.label.util.time" key="please_select_time"/></span></td>
  119.   </tr>
  120.   <tr>
  121.     <td width="92" height="30"><lt:Label res="res.label.util.time" key="hour"/>
  122. <select name=hour>
  123. <script>
  124. for (var i=1; i<=24; i++) {
  125. var h = i;
  126. if (i<10)
  127. h = "0" + i;
  128. document.write("<option value='" + h + "'>" + h + "</option>");
  129. }
  130. </script></select> </td>
  131.     <td width="92"><lt:Label res="res.label.util.time" key="minute"/>
  132. <select name=minute>
  133. <script>
  134. for (var i=0; i<=60; i++) {
  135. var h = i;
  136. if (i<10)
  137. h = "0" + i;
  138. document.write("<option value='" + h + "'>" + h + "</option>");
  139. }
  140. </script></select> </td>
  141.     <td width="76"><lt:Label res="res.label.util.time" key="second"/>
  142. <select name=second>
  143. <script>
  144. for (var i=0; i<=60; i++) {
  145. var h = i;
  146. if (i<10)
  147. h = "0" + i;
  148. document.write("<option value='" + h + "'>" + h + "</option>");
  149. }
  150. hour.value = "12";
  151. minute.value = "00";
  152. second.value = "00"; 
  153. </script></select> </td>
  154.   </tr>
  155.   <tr>
  156.     <td height="30" colspan="3" align="center"><input type="button" value=<lt:Label key="ok"/> onClick="window.returnValue=hour.value+':'+minute.value+':' +second.value; window.close()" >
  157.       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  158.     <input type=button value=<lt:Label key="close"/> onClick="window.close()"></td>
  159.   </tr>
  160. </table>
  161. </body>
  162. </HTML>