使用jQuery,我怎么能得到有插入符号的(光标的)焦点的输入元素?

或者换句话说,如何确定输入是否具有插入符号的焦点?


当前回答

如果你想确认焦点是否在元素上,那么

if ($('#inputId').is(':focus')) {
    //your code
}

其他回答

试试这个::

$(document).on("click",function(){
    alert(event.target);
    });

$(':focus')[0]会给你实际的元素。

$(':focus')会给你一个元素数组,通常一次只关注一个元素,所以只有当你以某种方式关注多个元素时才会更好。

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

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

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

我移动到鼠标上输入“name”并按下键盘上的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>
// 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')。如果您正在寻找当前关注的元素$(document。activeElement)将检索它,而不必搜索整个DOM树。

答案是:

document.activeElement

如果你想用jQuery对象包装元素:

$(document.activeElement)
$( document.activeElement )

将检索它,而不必搜索整个DOM树,如jQuery文档中推荐的那样