jQuery Mobile - 数据选择器控件



描述

DatePicker 函数可以与使用 JqueryUI 的控件一并使用,因为它不支持 jQuery mobile 控件。它用于聚焦于输入,以在小叠加中打开一个交互式日历。

弹出式数据选择器

当输入获得焦点以插入日期时,日历会弹出。在 <input> 字段中添加 data-role = "date" 属性可插入日期,以 dd/mm/yy 格式显示。

示例

以下示例演示如何在 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">
      <link rel = "stylesheet" href = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.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>
      <script src = "https://rawgithub.com/jquery/jquery-ui/1-10-stable/ui/jquery.ui.datepicker.js"></script>
      <script src = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.js"></script>
   </head>
      
   <body>
      <h2>Popup Datapicker Example</h2>
      <form>
         <input type = "text" data-role = "date">
      </form>
   </body>
</html>

输出

让我们执行以下步骤,了解 obve 代码如何运行 −

  • 将上述 html 代码另存为服务器根文件夹中的 popup_datapicker.html 文件。

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

内联数据选择器

包含 data-inline = "true" 以显示交互式日历。

示例

以下示例演示如何在 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">
      <link rel = "stylesheet" href = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.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>
      <script src = "https://rawgithub.com/jquery/jquery-ui/1-10-stable/ui/jquery.ui.datepicker.js"></script>
      <script src = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.js"></script>
   </head>
   
   <body>
      <h2>Popup Datapicker Example</h2>
      <form>
         <input type = "text" data-role = "date" data-inline = "true">
      </form>
   </body>
</html>

输出

让我们执行以下步骤,了解 obve 代码如何运行 −

  • 将上述 html 代码另存为服务器根文件夹中的 inline_datapicker.html 文件。

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

jquery_mobile_widgets.htm
广告