jquery专注于加载

发布于 2024-12-10 09:44:26 字数 215 浏览 0 评论 0原文

如何将焦点设置在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

动次打次papapa 2024-12-17 09:44:26

尝试将你的代码包装到此代码中,以便它在 DOM 准备好之后执行

$(function(){
    //your code
});

,这样它就会变成

$(function(){
    document.getElementById('ID_HTML_wanted').focus();
});

然而,你的元素没有 .focus() 方法,如果你想真正使用 jQuery 的方法,请使用

$(function(){
    $("#ID_HTML_wanted").focus();
});

Try to wrap your code to this code so it executes AFTER DOM is ready

$(function(){
    //your code
});

so it will become

$(function(){
    document.getElementById('ID_HTML_wanted').focus();
});

However, your element't don't have .focus() method, if you want to REALLY use jQuery's one, use

$(function(){
    $("#ID_HTML_wanted").focus();
});
时光是把杀猪刀 2024-12-17 09:44:26

抱歉,我实际上忽略了在 DOM 准备好时设置焦点:

$( document ).ready(function() {
  $("#ID_HTML_wanted").focus();
});

.ready()< 的以下所有三种语法/a> 是等价的:

$(document).ready(handler)
$().ready(handler) (this is not recommended)
$(handler)

Sorry, i have effectively omit to set focus when DOM is ready :

$( document ).ready(function() {
  $("#ID_HTML_wanted").focus();
});

All three of the following syntaxes of .ready() are equivalent:

$(document).ready(handler)
$().ready(handler) (this is not recommended)
$(handler)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文