$(“input”).focus 不起作用

发布于 2024-12-06 22:51:07 字数 259 浏览 0 评论 0原文

我似乎遇到了一个奇怪的 jQuery 问题。在我的页面上,我有许多文本字段和选择框以及以下代码:(

$('input').focus(function() { alert($(this).attr("name")); });

这是稍后要完成的占位符代码)。页面加载时,没有错误。然而,聚焦任何文本输入根本没有任何作用。我还尝试了选择器 $(':input') - 具有相同的结果。

我缺少什么?

I seem to be having a strange jQuery issue. On my page I have a number of text fields and select boxes and this code:

$('input').focus(function() { alert($(this).attr("name")); });

(this is a placeholder code to be completed later on). When the page loads, there are no errors. However focusing any of the text inputs does nothing - at all. I also tried selector $(':input') - with the same result.

What am I missing?

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

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

发布评论

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

评论(1

任性一次 2024-12-13 22:51:07

尝试使用文档就绪块,以确保在尝试添加事件之前加载要绑定的输入。

$(document).ready( function () {
    $('input').focus( function() {
        alert($(this).attr("name")); 
    });
});

Try using a document ready block, to ensure the input you want to bind to is loaded before you try and add the event.

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