关闭时更改 jQueryUI Datepicker 的焦点
我希望 jQueryUI 在选择器关闭后将焦点更改为另一个元素:
$( "#datepicker" ).datepicker({
onClose: function(dateText, inst) {
$("#time").focus(); //doesn't work
$("#time").addClass('debug'); //works
}
});
上面的应该可以工作,但不幸的是 datepicker 似乎有一个命令 inst.input.focus();
(我认为)在 onClose 回调之后调用,它将焦点重置到原始输入元素。我想知道是否有办法用bind()解决这个问题。
I want jQueryUI to change the focus to another element after the picker is closed:
$( "#datepicker" ).datepicker({
onClose: function(dateText, inst) {
$("#time").focus(); //doesn't work
$("#time").addClass('debug'); //works
}
});
The above should work but unfortunately datepicker seems to have a command inst.input.focus();
(I think) called after the onClose callback which resets the focus to the original input element. I'm wondering if there is way round this with bind().
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果插件在
onClose
回调后设置焦点,您可以有一些延迟并执行它。You can have some delay and execute it if the plugin is setting the focus after
onClose
callback.