annuaire recherche
Attributes accesskey (attribute) class (attribute) contenteditable (attribute) contextmenu (attribute) data-* (attribute) dir (attribute) draggable (attribute) dropzone (attribute) Global attributes hidden (attribute) id (attribute) itemid (attribute) itemprop (attribute) itemref (attribute) itemscope (attribute) itemtype (attribute) lang (attribute) slot (attribute) spellcheck (attribute) style (attribute) tabindex (attribute) title (attribute) translate (attribute) Elements a abbr address area article aside audio b base bdi bdo blockquote body br button canvas caption cite code col colgroup data datalist dd del details dfn dialog div dl dt em embed fieldset figcaption figure footer form h1 head header hr html i iframe img input input type="button" input type="checkbox" input type="color" input type="date" input type="datetime"-local input type="email" input type="file" input type="hidden" input type="image" input type="month" input type="number" input type="password" input type="radio" input type="range" input type="reset" input type="search" input type="submit" input type="tel" input type="text" input type="time" input type="url" input type="week" ins kbd label legend li link main map mark menu menuitem meta meter nav noscript object ol optgroup option output p param picture pre progress q rp rt rtc ruby s samp script section select slot small source span strong style sub summary sup table tbody td template textarea tfoot th thead time title tr track u ul var video wbr Miscellaneous Attributes Block-level elements CORS enabled image CORS settings attributes Element Inline elements Kinds of HTML content Link types Microdata Optimizing your pages for speculative parsing Preloading content Reference Supported media formats Using the application cache Obsolete acronym applet basefont big blink center command content dir element font frame frameset hgroup image input type="datetime" isindex keygen listing marquee nextid noframes plaintext strike tt xmp
personnages

datetime-local创建输入字段的元素允许轻松输入日期和时间 - 这包括年,月,日,小时和分钟。

控件的用户界面从浏览器到浏览器有所不同,目前的支持是不完整的,只有桌面上的Chrome / Opera和Edge以及大多数现代的移动浏览器版本具有可用的实现。在其他浏览器中,控件会优雅地降到简单

对于那些不使用支持浏览器的用户,Chrome / Operadatetime-local控件看起来像下面的屏幕截图。点击右侧的向下箭头会弹出一个日期选择器,让您选择一个日期; 你必须手动输入时间。

边缘日期时间-本地控件看起来是这样的但是, 单击该值的日期和时间部分将为您提供两个单独的选取器, 以便您进行选择:

表示日期和时间的DOMString,或者为空。

活动

改变和输入。

支持的通用属性

自动完成,列表,只读和步骤。

IDL属性

列表,值,值asAsumber。

方法

select(),stepDown(),stepUp()。

ADOMString表示输入到输入中的日期的值。您可以通过在value属性中包含日期来为输入设置默认值,如下所示:

有一件事要注意的是,显示的日期格式与实际不同value- 显示的日期格式将根据用户操作系统的设置区域选择,而日期value总是格式化的yyyy-MM-ddThh:mm。例如,当将上面的值提交给服务器时,它将看起来像partydate=2017-06-01T08:30

注意记住,如果这样的数据是通过HTTP提交的GET,冒号字符将需要转义以包含在URL参数中,例如partydate=2017-06-01T08%3A30

您还可以使用该HTMLInputElement.value属性在JavaScript中获取和设置日期值,例如:

var dateControl = document.querySelector('input[type="datetime-local"]');dateControl.value = '2017-06-01T08:30';

使用日期时间本地输入

日期/时间输入听起来很方便乍一看 - 他们提供了一个简单的用户界面来选择日期和时间,他们规范化的数据格式发送到服务器,无论用户的地区。但是,由于浏览器支持有限,因此存在问题。

我们将考虑基本的和更复杂的用途,然后就减轻浏览器支持问题提供建议(请参阅处理浏览器支持)。

datetime-local的基本用法

最简单的使用涉及基本元素组合,如下所示:

设置最大和最小日期和时间

您可以使用minmax属性来限制用户可以选择的日期/时间。在下面的例子中,我们设置最小日期时间2017-06-01T08:30和最大日期时间为2017-06-30T16:30

其结果是:

  • 只能选择2017年6月的日期 - 只有日期值的“天”部分可以编辑,6月以外的日期不能滚动到日期选择器窗口小部件中。

  • 根据您使用的浏览器,您可能会发现超出指定值的时间可能无法在时间选择器(如边缘)中选择,或者无效(请参阅验证),但仍可用(例如Chrome)。

注意:您应该能够使用该step属性来改变每次增加日期时跳过的天数(例如,也许您只希望使周六可选)。但是,在编写本文的任何实施过程中,这似乎并不奏效。

控制输入大小

不支持表单大小属性,如size。你将不得不求助于CSS的大小需求。

设置时区

一件事的datetime-local输入型不提供用于设置日期时间的时区/区域设置的方式。这在datetime输入类型中是可用的,但是这种类型现在已经过时了,已经从规范中删除了。这个被删除的主要原因是缺少浏览器的实现,以及对用户界面/体验的关注。只需要一个控件(或控件)来设置日期/时间,然后在一个单独的控件中处理语言环境就比较容易。

例如,如果您正在创建一个用户可能已经登录的系统,并且已经设置了其语言环境,则可以使用hidden输入类型提供时区。例如:

另一方面,如果您需要允许用户输入时区以及日期时间条目,则可以提供输入时区的方法,如 ...

在这两种情况下,timedate和timezone值将作为单独的数据点提交给服务器,然后您需要将它们适当地存储在服务器端的数据库中。

注意:上面的代码片段取自HTML选择元素中的所有世界时区。

验证

默认情况下,不对输入的值应用任何验证。UI实现通常不会让你输入任何不是日期时间的东西 - 这是有帮助的 - 但是你仍然可以不填写任何值并提交,或者输入无效的日期时间(例如4月32日)。

您可以使用minmax限制可用的日期(请参阅anch(“设置最大值和最小值日期”)),并使用该required属性在日期中强制填入。因此,如果您尝试提交超出设定范围的日期或空的日期字段,支持的浏览器将显示错误。

我们来看一个例子 - 在这里我们设置了最小和最大的日期时间,并且还要求这个字段:

如果您尝试使用不完整的日期提交表单(或使用设定范围外的日期),则浏览器显示错误。现在尝试玩这个例子:

这里是不使用支持浏览器的人的截图:

这是上面例子中使用的CSS。这里我们利用:valid:invalidCSS属性来根据当前值是否有效来设置输入的样式。我们必须将图标放在输入旁边,而不是输入本身,因为在Chrome中生成的内容放置在表单控件中,无法有效地进行样式化或显示。

div { margin-bottom: 10px; display: flex; align-items: center;}label { display: inline-block; width: 300px;}input:invalid+span:after { content: '✖'; padding-left: 5px;}input:valid+span:after { content: '✓'; padding-left: 5px;}

重要提示:HTML表单验证是不是脚本,确保输入的数据是正确的格式的替代品。有人很容易调整HTML,使他们绕过验证,或完全删除它。也有人可能完全绕过你的HTML,直接提交数据到你的服务器。如果您的服务器端代码无法验证接收到的数据,当格式不正确的数据被提交(或数据太大,类型错误等等)时,可能会发生灾难。

处理浏览器支持

如上所述,在编写本文时使用日期输入的主要问题是浏览器支持 - 只有Chrome / Opera和Edge支持它在桌面上,以及大多数现代浏览器在手机上。作为一个例子,datetime-localAndroid版Firefox 的选择器如下所示:

非支持的浏览器会降级为文本输入, 但这会在用户界面的一致性 (所呈现的控件不同) 和数据处理方面产生问题。

第二个问题是最严重的 - 就像我们之前提到的那样,datetime-local输入的实际值总是被格式化yyyy-mm-ddThh:mm。另一方面,通过文本输入,浏览器默认不知道日期的格式,有很多不同的方式来写日期和时间,例如:

  • ddmmyyyy

  • dd/mm/yyyy

  • mm/dd/yyyy

  • dd-mm-yyyy

  • mm-dd-yyyy

  • mm-dd-yyyy hh:mm(12 hour clock)

  • mm-dd-yyyy hh:mm(24 hour clock)

  • etc.

One way around this is to put apatternattribute on yourdatetime-localinput. Even though thedatetime-localinput doesn't use it, the text input fallback will. For example, try viewing the following demo in a non-supporting browser:

如果你尝试提交它,你会看到,现在浏览器显示错误信息(并突出了输入为无效)如果您的条目不匹配的模式nnnn-nn-nnTnn:nn,在那里n是一个数字从0到9。当然,这并未不要阻止人们输入无效日期,或者错误地格式化日期和时间。

用户将要了解他们需要输入时间和日期的模式?

我们仍然有一个问题。

目前以跨浏览器的方式处理表单中日期的最好方法是让用户在单独的控件中输入日期,月份,年份和时间(选取器,以及一组五个

Choose a date and time for your party:

月份是硬编码的(因为它们总是相同的),而日和年的值是根据当前选择的月份和年份以及当年分别动态生成的(请参阅下面的代码注释,了解这些函数的详细解释)。我们也决定动态地生成小时和月份,因为有这么多!

该代码可能会感兴趣的另一部分是特征检测码-来检测浏览器是否支持,我们创建了一个新的元素,设置其typedate,然后立即检查什么的类型设置为-不支持的浏览器将返回text,因为这个date类型会回到类型text。如果不支持,我们隐藏本地选择器并显示后备选取器UI(, ready for the next set to be injected while(daySelect.firstChild){ daySelect.removeChild(daySelect.firstChild); } // Create variable to hold new number of days to inject var dayNum; // 31 or 30 days? if(month === 'January' | month === 'March' | month === 'May' | month === 'July' | month === 'August' | month === 'October' | month === 'December') { dayNum = 31; } else if(month === 'April' | month === 'June' | month === 'September' | month === 'November') { dayNum = 30; } else { // If month is February, calculate whether it is a leap year or not var year = yearSelect.value; (year - 2016) % 4 === 0 ? dayNum = 29 : dayNum = 28; } // inject the right number of new

Living Standard


HTML5The definition of '' in that specification.

Recommendation


浏览器兼容性

Feature

Chrome

Edge

Firefox (Gecko)

Internet Explorer

Opera

Safari

Basic support

20

12

No support1

No support

10.62

No support2

Feature

Android

Chrome for Android

Edge

Firefox Mobile (Gecko)

IE Mobile

Opera Mobile

Safari Mobile

Basic support

(Yes)

(Yes)

(Yes)

(Yes)

?

(Yes)

(Yes)

Article précédent: Article suivant: