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

📄 test-position.html

📁 提供了如何用一个java时间控件来代替手工输入
💻 HTML
字号:
<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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -