我目前正在使用JQuery datepicker,但它似乎并不强制只输入有效日期。这可能吗?例如,它允许我手动输入22/22/22到日期字段。最后一个结果是,只允许用户通过选择器弹出窗口输入日期吗?
由于
答案 0 :(得分:3)
尝试使用jQuery UI Datepicker Validation plugin。它适用于jQuery Validation插件,并提供您要求的确切功能。
答案 1 :(得分:1)
尝试这个想法
<input type='text' id='date' readonly='true'>
或
$("#date").keypress(function(event) {event.preventDefault();});
或
$("#date").attr( 'readOnly' , 'true' );
此处有更多详情jQuery Datepicker with text input that doesn't allow user input