jQuery - 查找表单字段是否集中的方法

时间:2010-12-09 13:58:03

标签: jquery

如果表单字段有焦点,jQuery中有没有办法找出答案?

if $('#id_here input[type=text]:focus'){ do this } else { } 

干杯,集市

1 个答案:

答案 0 :(得分:1)

是。使用focusblur事件处理程序:

$("#id_here input:text").focus(function(e) {
    // I am in focus, do something
    alert("I am a " + e.target.tagName);
}).blur(function(e) {
    // I have lost focus, do something else
});