与How do I find out which DOM element has the focus?非常相似,只是我没有尝试找到有焦点的字段,我只需要知道某个特定的字段是否已经有焦点。那可能吗?
答案 0 :(得分:10)
你可以尝试
$("input#id").is(":focus")
修改强>: 如果您打算在旧版浏览器上使用它,请阅读此帖。 http://forum.jquery.com/topic/is-the-focus-selector-valid
答案 1 :(得分:3)
您只需使用jQuery即可完成此操作:$(el).is(":focus")