# Jquery UI 的移動版日期拾取器插件 Jquery UI's Datepicker Styled for mobile
下面這個示例是Jquery UI 為移動設備開發的日期拾取器插件,這個插件并不包含在Jquery Mobile默認庫當中,你需要自己手動include這些文件
**日期拾取器 Datepicker**

## 使用說明 Usage Instructions
日期拾取器自動從type="date"屬性的輸入框中生成
```
<label for="date">Date Input:</label>
<input type="date" name="date" id="date" value="" />
```
我們推薦將label和input包裹在data-role=fieldcontain的div中作為描述,而且這些元素應該添加form中以便在 C級瀏覽器也能夠正常訪問
**注意:**該插件并不包含在Jquery Mobile默認庫當中,你需要包含以下文件來使用該插件:
```
<link rel="stylesheet" href="Jquery.ui.datepicker.mobile.css" />
<script src="Jquery.ui.datepicker.js"></script>
<script src="Jquery.ui.datepicker.mobile.js"></script>
```
你同樣可能需要配置頁面插件來使"date" input 轉換為"text" input 以避免原生"date" input與我們自定義的datepicker所沖突,要實現這樣的功能需要在"mobileinit"事件處理函數中使用如下代碼:
```
<script>
//reset type=date inputs to text
$( document ).bind( "mobileinit", function(){
$.mobile.page.prototype.options.degradeInputs.date = true;
});
</script>
```
把這些代碼放置在在Jquery加載后,Jquery Mobile加載前。你可以查看該頁面的源代碼是如何寫的
- 綜述
- Jquery mobile介紹 Jquery Mobile Overview
- 關鍵特性: Key features:
- 可訪問性 Accessibility
- a4版本支持的平臺 Supported platforms in Alpha 4
- API
- 默認配置
- 事件
- 方法
- 有響應的布局助手
- 主題
- 組件
- 頁面與對話框
- 頁面
- 頁面轉場 Page transitions
- 創建對話框 Creating dialogs
- Jquery Mobile的導航模型 Jquery Mobile's navigation model
- 鏈接的格式 Link formats
- 給頁面主題樣式 Page Theming
- 工具欄
- 工具欄
- 頭部欄
- 尾部欄
- 導航欄
- 固定定位的工具欄會在滾屏后重新出現 Fixed toolbars will re-appear after you scroll
- 全屏的固定的工具欄 Fullscreen fixed toolbar
- 持續的尾部欄 Persistent footer nav bar
- 給頭部欄和尾部欄設置主題樣式
- 按鈕
- 按鈕標記選項 Button markup options
- 給按鈕添加圖標 Adding Icons to Buttons
- 內聯按鈕 Inline buttons
- 組按鈕 Grouped buttons
- 主題化按鈕 Theming buttons
- 內容的格式化
- html格式化 HTML Formatting
- 布局網格 Layout grids
- 可折疊的內容 Collapsible content markup
- 給內容主題 Theming content
- 表單元素
- 表單元素 Form elements
- 表單元素示例 Form element gallery
- 文本輸入框 Text inputs
- 搜索輸入框 Search inputs
- 滑動條 Slider
- 開關 Flip toggle switches
- 復選按鈕 Checkboxes
- 單選按鈕組 Radio buttons
- 選擇菜單 Select menus
- 表單的主題樣式 Form themes
- ajax的表單提交 Ajax form submission
- 表單插件的方法 Form Plugin Methods
- Jquery UI 的移動版日期拾取器插件 Jquery UI's Datepicker Styled for mobile
- 列表
- 列表 List views
- 列表標記的規約List markup conventions