如何显示输入类型 =“datetime-local”的值?

Posted

技术标签:

【中文标题】如何显示输入类型 =“datetime-local”的值?【英文标题】:How can I display value of input type="datetime-local"? 【发布时间】:2018-08-06 20:43:40 【问题描述】:

我的代码是这样的:

<div id="output">test</div>
<div><input type=date value="2018-02-27"><button>Get</button></div>
<div><input type=time value="21:10"><button>Get</button></div>
<div><input type=datetime-local value="2018-02-27 21:10"><button>Get</button></div>

这样的演示:

http://jsfiddle.net/BP5kC/42/

输入类型日期和输入类型时间成功显示值。但是输入类型 datetime-local 不成功显示值

我使用最新的 chrome 浏览器(版本 64.0.3282.186 (Official Build) (64-bit)) 尝试一下

我该如何解决这个错误?

【问题讨论】:

【参考方案1】:

格式应为2018-02-27T21:10。你忘了写T

&lt;input type=datetime-local value="2018-02-27T21:10"&gt;

【讨论】:

以上是关于如何显示输入类型 =“datetime-local”的值?的主要内容,如果未能解决你的问题,请参考以下文章

如何设置 HTML5 输入类型 =“datetime-local”的样式 [重复]

角度输入类型 datetime-local

将类型为 datetime-local 的输入绑定到 Angular 2 中的 Date 属性

React JSX 将最小日期时间添加到 datetime-local 输入

如何从jQuery中的Datetime-local获取值?

datetime-local输入中的默认日期 - AngularJS