jquery ui datepicker - 必须离开字段,然后再次单击以显示 datepicker
我的 jquery ui 日期选择器有一个小问题。如果我单击输入类型文本,则会显示日期选择器并选择一个日期。然后输入获得焦点,这意味着我必须在输入外部单击,然后再次单击它以显示日期选择器。这个问题不会出现在datepicker演示中...你可以继续点击它 http://jqueryui.com/demos /datepicker/
--
控制台没有错误
--
// hangout date - jquery ui timepicker
$("#hangout_date").datepicker({ dateFormat: 'D d M yy' });
<p id="hangout_date_container">
<%= f.label :startdate, "Start Date" %>
<br />
<input type="text" id="hangout_date" name="hangout_date" size="30" value="" />
</p>
I have a small problem with a jquery ui datepicker. If I click on the input type text then the datepicker shows and I select a date. The input then gets focus which means I have to click outside the input and then click it again to show the datepicker. This problem doesnt appear on the datepicker demo... you can just keep clicking it http://jqueryui.com/demos/datepicker/
--
No errors in console
--
// hangout date - jquery ui timepicker
$("#hangout_date").datepicker({ dateFormat: 'D d M yy' });
<p id="hangout_date_container">
<%= f.label :startdate, "Start Date" %>
<br />
<input type="text" id="hangout_date" name="hangout_date" size="30" value="" />
</p>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需从 jquery ui 1.8.15 更新到 1.8.16 即可修复此问题。抱歉,在浪费你的时间之前应该这样做。
Simply updating from jquery ui 1.8.15 to 1.8.16 fixed it. Sorry should have done that before wasting your time.