标签: jquery
如果表单字段有焦点,jQuery中有没有办法找出答案?
爱
if $('#id_here input[type=text]:focus'){ do this } else { }
干杯,集市
答案 0 :(得分:1)
是。使用focus和blur事件处理程序:
focus
blur
$("#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 });