jquery专注于加载
如何将焦点设置在 html 元素上?
我使用 document.getElementById('ID_HTML_wanted').focus();
但我的 html 元素“ID_HTML_wanted”不是焦点。我用户 jquery api .focus
How to set the focus on a html element ?
I use document.getElementById('ID_HTML_wanted').focus();
but my html element "ID_HTML_wanted" as not the focus. I user jquery api .focus
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将你的代码包装到此代码中,以便它在 DOM 准备好之后执行
,这样它就会变成
然而,你的元素没有 .focus() 方法,如果你想真正使用 jQuery 的方法,请使用
Try to wrap your code to this code so it executes AFTER DOM is ready
so it will become
However, your element't don't have .focus() method, if you want to REALLY use jQuery's one, use
抱歉,我实际上忽略了在 DOM 准备好时设置焦点:
.ready()< 的以下所有三种语法/a> 是等价的:
Sorry, i have effectively omit to set focus when DOM is ready :
All three of the following syntaxes of .ready() are equivalent: