JQuery UI当用鼠标选择日期时,Datepicker失去焦点

前端之家收集整理的这篇文章主要介绍了JQuery UI当用鼠标选择日期时,Datepicker失去焦点前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用JQuery ui与datepicker,当用户选项卡上的字段,他们适当地获取日历弹出。

>用户选项卡(通过键到字段
>用户通过鼠标点击选择日期
>用户选项卡
> Tabindex从一个开始(在表单的开头)

这里是代码。 (也可以设置tab索引)

<input type="text" name="demo" />
<input type="text" class="date" />

jquery代码是:

$(".date").datepicker();

任何关于我如何解决这个问题的建议(奖励最短解决方案)?

解决方法

订阅onClose或onSelect事件:
$("#someinput").datepicker(
{
    // other options goes here
    onSelect: function ()
    {
        // The "this" keyword refers to the input (in this case: #someinput)
        this.focus();
    }
});

或者在onClose的情况下:

$("#someinput").datepicker(
{
    onClose: function ()
    {
        this.focus();
    }
});
原文链接:https://www.f2er.com/jquery/184648.html

猜你在找的jQuery相关文章