如何在jQuery mobile 1.4.0中制作时间选择器



我在安卓版的jQuery移动应用程序中有以下时间输入,我想为这个输入做一个时间选择器,作为安卓设备中的本机时间选择器。如何在 jQuery 移动版 1.4.0 中执行时间选择器?

请帮帮我...

<label for="notifTime"  data-inline="true">
<input  type="time" name="notifTime"  id="notifTime" />

你有没有试过jQuery Mobile Datebox插件:http://dev.jtsage.com/DateBox/?

它具有时间选择器模式,只要您只需要数小时和数分钟,它就很好。

这是一个演示

<div class="ui-field-contain">
    <label for="notifTime">Notification Time:</label>
    <input name="notifTime" id="notifTime" type="text" data-role="datebox" data-options='{"mode":"timebox", "useNewStyle":true, "overrideTimeFormat": 12, "themeButton": "b", "themeInput": "a", "theme": "b", "themeHeader": "b"}' />
</div>

如果您查看日期框网站,则有很多选项可以玩...

相关内容

  • 没有找到相关文章

最新更新