时间选择器关闭后文本框重新获得焦点

发布于 2024-12-25 07:45:17 字数 289 浏览 0 评论 0原文

我正在使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的奇迹 2025-01-01 07:45:17

描述

假设我理解您的问题,您可以在 onClose 事件中将焦点设置到文本框。如果这不是正确答案,请提供更多信息。 html 或更好的 jsFiddle 会很棒。

示例

$('#MyDatepicker').datetimepicker({
    onClose: function(dateText, inst) {
       $('#MyDatepicker').focus();
    }
});

更多信息

更新

如果您有多个 datePicker,则可以执行此操作。

  1. 给他们所有相同的 css 类。
  2. 这样做

     $('.MyDatePickerClass').datetimepicker({
            onClose: 函数(dateText, inst) {
               $('.MyDatePickerClass').focus();
            }
        });
    

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 a jsFiddle would be great.

Sample

$('#MyDatepicker').datetimepicker({
    onClose: function(dateText, inst) {
       $('#MyDatepicker').focus();
    }
});

More Information

Update

If you have several datePickers you can do this.

  1. Gave them all the same css class.
  2. Do this

        $('.MyDatePickerClass').datetimepicker({
            onClose: function(dateText, inst) {
               $('.MyDatePickerClass').focus();
            }
        });
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文