$(“input”).focus 不起作用
我似乎遇到了一个奇怪的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用文档就绪块,以确保在尝试添加事件之前加载要绑定的输入。
Try using a document ready block, to ensure the input you want to bind to is loaded before you try and add the event.