时间选择器关闭后文本框重新获得焦点
我正在使用jquery 的时间选择器插件。
一旦用户选择了日期+时间并单击“完成”按钮(基本上只是关闭对话框),我希望设置日期时间的文本框重新获得焦点(插件的当前行为是模糊焦点)。
这是因为在此页面上我有一组文本框,并且它们的选项卡顺序是按顺序设置的。我需要日期时间文本框来重新获得焦点以继续 Tab 键顺序。否则 Tab 键顺序将从第一个文本输入重新开始,这对用户来说不方便。
I'm using the timepicker plugin for jquery.
Once users selected a date+time and click on the "Done" button, which basically just closes the dialog, I want the textbox where datetime is set to gain back focus (the current behavior of the plugin is to blur out focus).
This is because on this page I have a set of textboxes and their tab orders are set sequentially. I need the datetime textbox to gain back focus to continue the tab order. otherwise the tab order will restart from the first text input which is inconvenient for the user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
描述
假设我理解您的问题,您可以在
onClose
事件中将焦点设置到文本框。如果这不是正确答案,请提供更多信息。html
或更好的jsFiddle
会很棒。示例
更多信息
更新
如果您有多个 datePicker,则可以执行此操作。
这样做
Description
Assuming i understand your question, you can set the focus to your textbox in the
onClose
event. Please provide more information if this is not the right answer.html
or better ajsFiddle
would be great.Sample
More Information
Update
If you have several datePickers you can do this.
Do this