jQuery 将焦点放在页面加载的文本框上
我的页面中有搜索表单。 页面加载时,默认情况下它处于焦点位置。 光标在其中处于活动状态。
我可以获取文本框的焦点吗? 在页面加载时? 那么默认情况下我没有光标吗?
i have search form in my page.
On page load it is on focus by default.
Cursor is active in it.
can i take of the focus of the textbox.
on page load?
So that i don't have cursor in it by default?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您不需要为此使用 javascript,只需在正文顶部的某处添加隐藏的 input:button 标记字段,它将获得焦点,但避免任何表单,因为您不希望它在用户单击 Enter 键时提交
You don't need javascript for this, just add hidden input:button tag field somewhere at the top of body, it will gain focus, but avoid any form, since you don't want it to submit when user clicks on Enter key
尝试使用
Try using
您是否尝试过将焦点放在其他地方,就像这样?
Have you tried putting the focus somewhere else, like this?