焦点即兴输入文本
我正在使用即席
http://www.shiguenori.com/material/jquery.impromptu/< /a>
显示对话框并收集用户的输入。
但当输入文本框出现时,我无法使其聚焦。
我尝试为输入提供一个 id 并
$('#impromptu_fname').focus();
在几个地方添加 impromptu.js 。
我还尝试在输入中添加自动对焦。
这些都不起作用。有什么想法吗?
I'm using impromptu
http://www.shiguenori.com/material/jquery.impromptu/
to show dialog boxes and collect user's input.
But I can't get the input textbox to focus when it appears.
I've tried giving the input an id and add in impromptu.js
$('#impromptu_fname').focus();
in several placess.
I also tried adding autofocus to the input.
None of that worked. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须在
loaded
回调中执行此操作:You'll have to do it in the
loaded
callback:感谢您提供使用加载回调的提示。我遇到了同样的问题,但是为了将焦点放在初始提示的默认按钮上,我是这样做的:
Thanks for the tip to use the loaded callback. I had the same problem, however to get the focus on the default button of the initial prompt, here's how I did it: