input组件怎么设置当天日期作为默认值显示
2个回答
展开全部
问题是,你使用了它们后,发现日期并不是默认在当天的(没有默认任何日期),而且el.value=new Date()也不行,只支持yyyy-MM-ddTHH:mm:ss.SSS(或其部分)这种形式的的字符串:
From the documentation:
A string representing a date.
Value: A valid full-date as defined in [RFC 3339], with the additional qualification that the year component is four or more digits representing a number greater than 0.
js默认是没有日期格式化函数的,除非你打算:
引入一个js的日期库
自己写一个简单的日期扩展类(自己考虑每月天数的不同,闰年等等问题,以实现日期的增减)
用后台语言直接在value的位置格式化输出,如<?=date('Y-m-d').'T'.date('H:i') ?>
在这篇文章找到了一个简单的用法,文档在此,使用:
From the documentation:
A string representing a date.
Value: A valid full-date as defined in [RFC 3339], with the additional qualification that the year component is four or more digits representing a number greater than 0.
js默认是没有日期格式化函数的,除非你打算:
引入一个js的日期库
自己写一个简单的日期扩展类(自己考虑每月天数的不同,闰年等等问题,以实现日期的增减)
用后台语言直接在value的位置格式化输出,如<?=date('Y-m-d').'T'.date('H:i') ?>
在这篇文章找到了一个简单的用法,文档在此,使用:
展开全部
<input id="start_time" type="date" name="date" value="">
时间控件设置默认值,js可这样:
document.getElementById('start_time').valueAsDate = new Date();
注意:目前来看,只能原生js有效果。
引用:https://zhidao.baidu.com/question/648922802713012485.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询