0

我正在尝试查找未知数量元素中的任何元素是否具有焦点

if($('#wrapper ul li a:focus')) # there are multiple a tags that are dynamically generated

有谁知道它是怎么做的?

4

1 回答 1

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
}
于 2013-10-10T13:09:10.810 回答