2015-10-27 91 views
1

我有一個具有微秒值(例如1950)的值(模型)的輸入字段以及將微秒轉換爲人類可讀格式的過濾器,例如00: 19.50(這在輸入字段中顯示)。我如何驗證或強制用戶保持這種格式?輸入字段,強制格式00:00.00

回答

1

您可以利用它接受一個正則表達式模式屬性的香蔥這一點。

你可以閱讀更多關於它在這裏:http://www.the-art-of-web.com/html/html5-form-validation/

這是他們所提供的例子。

<input type="url" name="website" required pattern="https?://.+"> 

我希望這會有所幫助。

@gapvision privided你的答案與滿足您的需求

模式='\ d \ d正確的圖案:\ d \ d \ d \ d

1

你可以指定一個pattern='\d\d:\d\d:\d\d'

<input type="text" pattern="\d\d:\d\d:\d\d" required> 

對於瀏覽器的支持,看到http://caniuse.com/#feat=input-pattern

+0

這不提供這個問題的答案。要批評或要求作者澄清,請在其帖子下方留言。 –

+1

這不能提供答案? – gapvision