灯箱专注于输入,仅在刷新后有效

发布于 2024-12-04 05:35:23 字数 264 浏览 1 评论 0 原文

我有一个登录框,当您单击登录按钮时会弹出,并且该灯箱将加载一个登录表单。

我尝试过设置 onLoad="document.loginForm.login.focus()" 尝试在页面加载时将焦点设置在登录框上。

然而,这似乎只有在刷新灯箱中的登录表单后才有效,而不是其背后的父文档。

我尝试向该函数添加超时选项,因为我认为这可能是一个计时问题,但这似乎不起作用。

有谁知道为什么它在刷新后有效,但在第一次加载时不起作用?

谢谢 编辑

I have a login box that pops up when you click on the login button, and that lightbox will have a login form loaded into it.

I have tried setting
onLoad="document.loginForm.login.focus()" to try and set the focus on the login box when the page loads.

However, this seems to only work, after you refresh the login form in the lightbox, not the parent documents behind it.

I have tried adding a timeout option to the function as I thought it may be a timing issue, but this does not seem to have worked.

Does anyone have any ideas why it works after a refresh, but not on first load?

Thanks
Eds

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

倾城月光淡如水﹏ 2024-12-11 05:35:23

我认为这应该对您有所帮助:

$(document).ready(function(){
    $("iframe").load(function(){
        window.frames[0].document.forms['loginForm'].login.focus();
    });
});

如果您的页面中有多个 iframe,则为您的目标 iframe 提供一个 id 并使用 $("#myIframeId") 而不是 $(" iframe”)

I think this should help you:

$(document).ready(function(){
    $("iframe").load(function(){
        window.frames[0].document.forms['loginForm'].login.focus();
    });
});

If you have more than one iframe in your page, then give an id to your target iframe and use $("#myIframeId") instead of $("iframe")

匿名。 2024-12-11 05:35:23

尝试在按钮单击事件上调用 document.loginForm.login.focus()

Try calling document.loginForm.login.focus() on button click event.

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