admin管理员组文章数量:1344300
I am using an HTML 5 form on an iPhone. This form has an input element like the following:
<input id="birthdate" type="date" />
When a user clicks this field, the iOS date picker appears. After a user selects a date, it puts the date in the field displayed as something like: Apr 14, 2012.
My question is, is there a way to format this date so that it looks like 04-14-2012 in the text box? Or, preferably, is there an straight forward approach to converting the iOS date format to a JavaScript Date object?
I am using an HTML 5 form on an iPhone. This form has an input element like the following:
<input id="birthdate" type="date" />
When a user clicks this field, the iOS date picker appears. After a user selects a date, it puts the date in the field displayed as something like: Apr 14, 2012.
My question is, is there a way to format this date so that it looks like 04-14-2012 in the text box? Or, preferably, is there an straight forward approach to converting the iOS date format to a JavaScript Date object?
Share Improve this question edited Apr 14, 2012 at 12:12 alex 491k204 gold badges889 silver badges991 bronze badges asked Apr 14, 2012 at 12:09 JavaScript DeveloperJavaScript Developer 4,00811 gold badges43 silver badges46 bronze badges 1- 2 possible duplicate of Specifying the value output of of an HTML5 input type = date? – epascarello Commented Apr 14, 2012 at 12:19
4 Answers
Reset to default 4I always thought the format was meant to be YYYY-MM-DD
.
W3C spec & RFC3339.
Anyway, you could convert it with JavaScript.
var dateInput = document.getElementById('birthdate');
dateInput.addEventListener('change', function() {
dateInput.value = new Date(dateInput.value).toISOString().split('T')[0];
}, false);
No.
There are two formats at play:
- displayed format
- internal format exposed to JavaScript and sent to the server
You cannot change the display format. It's up to the browser to decide how the date is presented to the user (in practice it's determined by system's locale).
You cannot change the internal format either. It's always ISO8601, regardless of browser/locale.
I agree with @PorneL's answer, however, you can potentially do some work to simulate the results you want. I will stipulate that it's not the best way to do it.
In pseudo code:
- Have two inputs, one of type date and another of text.
- Make the date input either invisible or 1px x 1px in side, and make the input the size that of the date that you would like
- On focus on the text input, set focus on the adjacent date input automatically.
- At this point, the user will be editing the date input field
- On change of the date field, grab the value and insert it into the text field using whatever formatting you prefer.
Again, it may not be the best solution, but it can work this way.
The following should do it.
$dat = new DateTime($_POST['MyDATE']);
$new_format = $dat->format('Y-m-d');
本文标签: javascriptHTML 5Input type date formatting on iOSStack Overflow
版权声明:本文标题:javascript - HTML 5 - Input type date formatting on iOS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743758271a2533902.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论