如何使用jQuery获取焦点元素?


Answers:


740
// Get the focused element:
var $focused = $(':focus');

// No jQuery:
var focused = document.activeElement;

// Does the element have focus:
var hasFocus = $('foo').is(':focus');

// No jQuery:
elem === elem.ownerDocument.activeElement;

您应该使用哪一个?引用jQuery文档

与其他伪类选择器(以“:”开头的选择器)一样,建议在:focus之前添加标签名称或其他选择器;否则,隐含通用选择器(“ *”)。换句话说,裸露$(':focus')等于$('*:focus')。如果您正在寻找当前关注的元素,则$(document.activeElement)将检索它,而不必搜索整个DOM树。

答案是:

document.activeElement

而且,如果您希望使用jQuery对象包装元素:

$(document.activeElement)

2
但是等等,我如何获得带有插入符号的元素?
戴夫2012年

@戴夫 您是什么意思“有插入符号”?专注?鼠标在上面吗?
gdoron支持Monica 2012年

好吧,这是我的情况:当我单击特定元素时,我想在最后一个聚焦的输入文本元素中放置一个字符。基本上,在单击特定元素之前,最后或恰好具有焦点的元素。
戴夫2012年

1
@戴夫 不能做 我认为只有IE才具有此功能,但是您现在要问的是另一个问题,您应该在一个新问题中进行。
gdoron支持Monica 2012年

3
我喜欢您如何使用$前缀的变量名,,$focused因为我假设您这样做是为了表示var是一个jquery对象。TYVM。
Valamas


6

我已经在Firefox,Chrome,IE9和Safari中测试了两种方法。

(1)。$(document.activeElement)可以在Firefox,Chrome和Safari中正常工作。

(2)。$(':focus')可以在Firefox和Safari中正常工作。

我进入鼠标输入“名称”,然后按键盘上的Enter键,然后尝试获取焦点元素。

(1)。$(document.activeElement)返回Firefox,Chrome和Safari中预期的input:text:name,但在IE9中返回input:submit:addPassword

(2)。$(':focus')在Firefox和Safari中按预期返回input:text:name,但在IE中什么也没有返回

<form action="">
    <div id="block-1" class="border">
        <h4>block-1</h4>
        <input type="text" value="enter name here" name="name"/>            
        <input type="button" value="Add name" name="addName"/>
    </div>
    <div id="block-2" class="border">
        <h4>block-2</h4>
        <input type="text" value="enter password here" name="password"/>            
        <input type="submit" value="Add password" name="addPassword"/>
    </div>
</form>

5

尝试这个:

$(":focus").each(function() {
    alert("Focused Elem_id = "+ this.id );
});

是的,这就是为什么此循环只有一个迭代的原因。警报只是为了演示示例。如果具有此变量,则可以使用所需元素进行所有操作。
Adil Malik

如何集中多个要素?
Andreas Furster 2014年

@AndreasFurster你是对的。在此循环中始终只有一个迭代。这可能不是实现目标的最佳方法,但它可以起作用。
Adil Malik 2014年

请参阅已接受的答案,以了解为什么这是最差/最不高效的方法。(不必要的.each不容忍)
布拉德·肯特

2

没人提过。

document.activeElement.id

我正在使用IE8,尚未在其他任何浏览器上对其进行测试。就我而言,我正在使用它来确保一个字段至少包含4个字符,并且在执行操作之前将焦点对准。输入第四个数字后,它将触发。该字段的ID为“ year”。我在用..

if( $('#year').val().length >= 4 && document.activeElement.id == "year" ) {
    // action here
}

1

$(':focus')[0] 将为您提供实际的元素。

$(':focus') 会为您提供一系列元素,通常一次只聚焦一个元素,因此,如果您以某种方式聚焦了多个元素,这会更好。



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.