Am使用Jquery U.I datepicker从用户获取日期输入。它工作正常,除了用户必须双击以获取值。我只希望当用户选择一次日期时,才获取值。
布局
<input type="text-area" class="form-input dateTextBox" name="childdob" id="childDob" value="{{ old('childdob') }}" autocomplete="off">
JS代码
$( function() {
$( "#childDob" ).datepicker({
changeMonth: true,
changeYear: true,
//yy-mm-dd
dateFormat: 'yy-mm-dd',
yearRange: "-18:+0",
maxDate: "0",
});
});