标签:element 输出 日期格式 简单 web 元素 tps 部分 ntb
html5的form元素对日期时间有丰富的支持
<input type="date"> <input type="time"> <input type="datetime"> <input type="month"> <input type="week"> <input type="datetime-local">
问题是,你使用了它们后,发现日期并不是默认在当天的(没有默认任何日期),而且el.value=new Date()也不行,只支持yyyy-MM-ddTHH:mm:ss.SSS(或其部分)这种形式的的字符串
js默认是没有日期格式化函数的,除非你打算:
document.getElementById(‘YourDataID‘).valueAsDate = new Date();
有意思的是,我用jQuery的选择器居然不能使用这个属性(设置了后无效)
此外,这些新玩意你只能在有限场景使用,生产环境是没意义的,浏览器支持太low了。
标签:element 输出 日期格式 简单 web 元素 tps 部分 ntb
原文地址:http://www.cnblogs.com/MirageFox/p/6823030.html