我正在使用 html5 功能来获取以下日期和时间
<input type="datetime-local" name="dtl" id='dd'>
它工作正常,但我想开始current date and time
,以前date and time
不应该允许使用。
所以请建议我如何去做。
我正在使用 html5 功能来获取以下日期和时间
<input type="datetime-local" name="dtl" id='dd'>
它工作正常,但我想开始current date and time
,以前date and time
不应该允许使用。
所以请建议我如何去做。
你可能需要 JavaScript 来做这件事。创建一个日期并将其分配给您的datatime-local input
字段:
var date = new Date(),
dd = document.getElementById('dd');
dd.value = date.toISOString();
要要求将来的日期,您还可以修改输入的min
属性,但这不起作用,因为到目前为止,没有主流浏览器支持这种类型的输入。对于这项工作,您最好使用基于 JavaScript 的日期选择器。