test-position.html

来自「提供了如何用一个java时间控件来代替手工输入」· HTML 代码 · 共 41 行

HTML
41
字号
<html xmlns="http://www.w3.org/1999/xhtml">  <head>    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />    <title>JS Calendar (positioning test)</title>    <script type="text/javascript" src="calendar.js"></script>    <script type="text/javascript" src="calendar-setup.js"></script>    <script type="text/javascript" src="lang/calendar-en.js"></script>    <style type="text/css"> @import url("calendar-win2k-cold-1.css"); </style>  </head>  <body style="height: 100%; margin: 0px; padding: 0px;">    <table style="height: 100%; width: 100%;" cellspacing="0" cellpadding="0">      <tr style="height: 100%;">        <td style="vertical-align: top; text-align: left;">          <input type="text" id="cal-field-1" />          <button type="submit" id="cal-button-1">...</button>          <script type="text/javascript">            Calendar.setup({              inputField    : "cal-field-1",              button        : "cal-button-1",              align         : "Tr"            });          </script>        </td>        <td style="vertical-align: bottom; text-align: right;">          <input type="text" id="cal-field-2" />          <button type="submit" id="cal-button-2">...</button>          <script type="text/javascript">            Calendar.setup({              inputField    : "cal-field-2",              button        : "cal-button-2"            });          </script>        </td>      </tr>    </table>  </body></html>

⌨️ 快捷键说明

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