我试过alert( $(":focus").attr("id") );
和我一起试过
$("input").each(function(){
$('#debug').val( $(this).is(":focus") + $('#debug').val());
});
第一个警告(未定义),第二个用false
填充调试选择器任何想法?它是:焦点
我正在运行jquery版本1.7.1 并在chrome中进行测试
答案 0 :(得分:0)
尝试这样做,这是我通常在选择器级别上确定元素是否属于某个选择器的方法。
$(this).filter(":focus").size()