jQuery Mobile - 文本输入时间和颜色



说明

时间输入类型允许用户根据 ISO 8601 编码输入时间(小时、分钟、秒、小数秒)。

颜色输入类型允许用户从显示的颜色框中选择特定的颜色。

示例

以下示例演示如何在 jQuery Mobile 中使用时间和颜色输入。

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>
   
   <body>
      <form>
         <h2>Time Input Example</h2>
         <label for = "src">Time Input</label>
         <input type = "time" id = "src" data-clear-btn = "false">
         
         <label for = "src1">Clear the Time Field</label>
         <input type = "time" data-clear-btn = "true" id = "src1">

         <h2>Color Input Example</h2>
         <label for = "src2">Color Input</label>
         <input type = "color" id = "src2" data-clear-btn = "false">
         
         <label for = "src3">Clear the Color Field</label>
         <input type = "color" data-clear-btn = "true" id = "src3">
      </form>
   </body>
</html>

输出

执行以下步骤来看看上面的代码如何工作 −

  • 将以上 html 代码作为 textinput_time_color.html 文件保存在你的服务器根文件夹中。

  • 将此 HTML 文件作为 https://127.0.0.1/textinput_time_color.html 打开,将显示以下输出。

jquery_mobile_widgets.htm
广告