是否有带秒数的本机 HTML 日期时间选择器?
Is there a native HTML date time picker with seconds?
有什么方法可以在 HTML 日期时间选择器中包含秒数?
<input type="datetime-local" />
看起来这里有答案,使用 "step" 属性:Show seconds on input type=date-local in Chrome
设置step=1
将在选择器上显示秒数:
<input type=datetime-local step=1>
可以在此处找到该步骤的一些文档:http://www.w3schools.com/jsref/prop_datetime-local_step.asp
有什么方法可以在 HTML 日期时间选择器中包含秒数?
<input type="datetime-local" />
看起来这里有答案,使用 "step" 属性:Show seconds on input type=date-local in Chrome
设置step=1
将在选择器上显示秒数:
<input type=datetime-local step=1>
可以在此处找到该步骤的一些文档:http://www.w3schools.com/jsref/prop_datetime-local_step.asp