2014-01-17 69 views
1

我有我的jQuery手機應用程序爲Android的以下時間輸入,我想做一個時間選擇器作爲本機時間選擇器在Android設備的輸入。我如何在jQuery mobile 1.4.0中做一個時間選擇器?如何在jQuery Mobile 1.4.0中製作時間選取器?

請幫我...

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

回答

3

你有沒有嘗試過的jQuery Mobile的Datebox插件:http://dev.jtsage.com/DateBox/

它有一個時間選擇模式,只要你只需要幾個小時和幾分鐘就可以。

這裏是一個DEMO

<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> 

如果你看一下datebox網站,有很多選擇與...玩

+0

@ezankerThanks了很多,人無我有發現mobipick插件,但其僅限日期..我會嘗試一下,非常感謝 – user

+0

我已經嘗試過,它的工作完美,非常感謝.. – user

+1

歡迎您。 – ezanker

相關問題