当用户使用图形日历和箭头或使用键盘号时,是否可以在事件onChange中检测< input type =“date”>
我只对VanillaJS解决方案感兴趣.
解决方法:
像这样的东西?
function handler(e){
alert(e.target.value);
}
<input type="date" id="dt" onchange="handler(event);"/>
2022-12-10 11:25:01
当用户使用图形日历和箭头或使用键盘号时,是否可以在事件onChange中检测< input type =“date”>
我只对VanillaJS解决方案感兴趣.
解决方法:
像这样的东西?
function handler(e){
alert(e.target.value);
}
<input type="date" id="dt" onchange="handler(event);"/>