在 Firefox 中对文本区域调用 $().focus 无法按预期工作

发布于 2024-10-22 02:38:38 字数 262 浏览 4 评论 0原文

我在这里重现了该问题: http://jsfiddle.net/Rc52x/5/

如果您使用 Chrome 时,点击Click here!,文本区域将获得焦点,您可以按预期开始输入。

如果您在使用 Firefox 时单击它(我现在使用的是 3.6.15),则文本区域不会获得焦点,并且键入不会执行任何操作。

到底是什么?

I've reproduced the problem here: http://jsfiddle.net/Rc52x/5/

If you click on Click here! while using Chrome, the textarea gains focus and you can start typing as expected.

If you click on it while using Firefox (I'm using 3.6.15 right now), the textarea does NOT gain focus and typing does nothing.

What the heck?

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

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

发布评论

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

评论(2

会发光的星星闪亮亮i 2024-10-29 02:38:38

您需要防止链接的默认操作: http://jsfiddle.net/JAAulde/Rc52x/7 /

Firefox 正在跟踪它,导致文本区域在获得焦点后失去焦点。

You need to prevent the default action of the link: http://jsfiddle.net/JAAulde/Rc52x/7/

Firefox is following it causing the textarea to lose focus after gaining.

时间海 2024-10-29 02:38:38

这有效:

$(document).ready(function () {
    $("a#focus").click(function(e) {
        $("#Body").focus();
        return false;
    });
});

返回 false 阻止导航到“#...”

This works:

$(document).ready(function () {
    $("a#focus").click(function(e) {
        $("#Body").focus();
        return false;
    });
});

return false prevents from navigating to "#..."

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