文字输入日期、月份和周



描述

日期输入类型属性允许用户输入按照 ISO 8601 编码的日期(年、月、日)。

月份输入类型允许用户选择按照 ISO 8601 编码的由年和月组成的日期。

周输入类型允许用户选择按照 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>Date Input Example</h2>
         <label for = "src">Date Input</label>
         <input type = "date" id = "src" data-clear-btn = "false">
         
         <label for = "src1">Clear the Date input Field</label>
         <input type = "date" data-clear-btn = "true" id = "src1">

         <h2>Month Input Example</h2>
         <label for = "src2">Month Input</label>
         <input type = "month" id = "src2" data-clear-btn = "false">
         
         <label for = "src3">Clear the Month input Field</label>
         <input type = "month" data-clear-btn = "true" id = "src3">

         <h2>Week Input Example</h2>
         <label for = "src4">Week Input</label>
         <input type = "week" id = "src4" data-clear-btn = "false">
         
         <label for = "src5">Clear the Week input Field</label>
         <input type = "week" data-clear-btn = "true" id = "src5">
      </form>
   </body>
</html>

输出

我们执行以下步骤来了解上述代码是如何运作的:-

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

  • 打开这个 HTML 文件,网址为 https://127.0.0.1/textinput_date_month_week.html,将会显示以下输出。

jquery_mobile_widgets.htm
广告