gpt4 book ai didi

javascript - 使用jQuery检查文本框焦点

转载 作者:行者123 更新时间:2023-11-30 06:59:37 25 4
gpt4 key购买 nike

Possible Duplicate:
Using jQuery to test if an input has focus




我需要检查某个特定的文本框是否具有焦点,或者不使用jQuery。所以我的代码是这样的,但是不起作用:

if (document.getElementById("lastname").focus = true) {
alert("hello");
}


我的用例是:我有一个文本框,当 #lastname文本框获得焦点或失去焦点时,应显示或隐藏该文本框。但是,如果 #lastname文本框失去焦点到另一个文本框,则后者应保持可见,直到失去焦点。

任何帮助将不胜感激。

最佳答案

if ($("#lastname").is(':focus')) {
alert("hello");
}


jQuery docs for :focus
jQuery docs for .is()


更新:
要在字段获得/失去焦点时显示/隐藏元素,请使用 focusinfocusout事件处理程序:

$(document).ready(function() {
$('#lastname').focusin(function() {
$(hidden-element).show();
}).add(hidden-element).focusout(function() {
if ( !$(hidden-element).is(':focus') ) {
$(hidden-element).hide();
}
});
});
//where hidden-element is a reference to or selector for your hidden text field

关于javascript - 使用jQuery检查文本框焦点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12016725/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com