Why is HTML5 input type datetime removed from browsers already supporting it?

自作多情 提交于 2019-11-26 03:54:28

问题


I was wondering why all browsers, like Chrome versions higher than 26, which had support in the past for the input datetime removed it?

This sounds like a duplicate of this article, but that one is quite aged.

It looks like the HTML WG prefers datetime-local (w3c) above datetime (w3c), but why?

See this for feature development timeline.

What others say:

According to mobilexweb.com it was deprecated in iOS \'because it looks too much like the datetime input type\'.

Following Google Chrome, now Safari on iOS doesn’t support the datetime input type anymore and it will fallback to text. This type was deprecated in the standard in favor of datetime-local or using two inputs, date and time for the same purpose. The problem is that datetime was compatible with iOS from version 5.0 to 6.1; if you are using it, be careful!

What is the difference?

Where datetime-local contains only a date and time element, datetime also contains the time zone. This is useful since you might want to act differently when the client\'s time zone is different from the server\'s one.

Why does this matter?

What if the web page asks: when do you want me to call you, and the user selects \'tomorrow, 3pm\', when do you need to call him back? tomorrow 3pm UTC or CET?


回答1:


The only reason I can think of is browser vendors losing faith in the standard being approved, therefore removing the implementation from their code.

To support this thought: W3C just removed both datetime and datetime-local from their working draft.

Browser vendors will eventually drop support of both of them.

According to html5test most of the current browsers removed support of both of the input types.

The latest development:

  • The datetime-local is back on the draft;
  • The newer specs page doesn't show datetime, but it does show datetime-local. It does sound like it is back on the map and going to be supported again!

Also take notice of this related post on Webmasters.SE: Is datetime-local removed from HTML 5.1?.




回答2:


Source http://www.w3.org/TR/html5/

"The following features are at risk and may be removed due to lack of implementation.
..<input type=datetime>.."



来源:https://stackoverflow.com/questions/21263515/why-is-html5-input-type-datetime-removed-from-browsers-already-supporting-it

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!