我想知道为什么所有的浏览器,如Chrome的版本高于26,其中支持过去的输入datetime删除它?
这听起来像是重复的this article,但那一个是相当老。
看起来HTML工作站优先于datetime(w3c)的datetime-local(w3c),但是为什么?
特性开发时间线见this。
别人说什么:
根据mobilexweb.com它被弃用在iOS’,因为它看起来太像日期时间输入类型’。
@H_404_12@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!
有什么不同?
其中datetime-local仅包含日期和时间元素,datetime还包含时区。这是有用的,因为当客户端的时区与服务器的时区不同时,您可能需要采取不同的行动。
为什么这么重要?
@H_404_12@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?