我正在尝试查找未知数量元素中的任何元素是否具有焦点
if($('#wrapper ul li a:focus')) # there are multiple a tags that are dynamically generated
任何人都知道它是如何完成的?
答案 0 :(得分:3)
$('#wrapper ul li a:focus').length // get the number of items that has focus
$('#wrapper ul li a:focus').eq(0) //get's the first matched element
所以如果你需要检查一组元素中的任何元素是否有焦点
if($('#wrapper ul li a:focus').length){
// do something
}