0

我正在使用jquery mobile。我需要在单击文本字段时显示日期选择器,同时我需要在单击日期文本字段时隐藏键盘。作为默认功能键盘在用户单击文本字段时打开键盘打开但我只需要在单击文本字段时打开日期选择器..这是代码。

 <div data-role="fieldcontain">
                            <label for="text-12" style="text-align:left;margin-left: 0px;" >Date:</label>
                            <input name="text-12" id="documentCaseDate" value="" type="text">
                        </div>
4

1 回答 1

1

如果需要在 jquery mobile 中有一个 Datepicker 为什么不使用Jquery Mobile Datebox ...

它是jquery 移动框架的日期 UI,具有其他功能,例如...

  • 多种数据输入模式
  • 4种不同的显示模式
  • 完全本地化
  • 支持输入的数据限制
  • 在打开时自动解析手动输入或预先输入的日期
  • 自动绑定到 data-type='datebox',选项可通过 data-options 配置。

完整的插件可以从Jquery Mobile Datebox下载,主页可以称为Jquery Mobile Datebox Homepage ....

谢谢...

于 2013-06-21T05:01:54.367 回答