0
我試圖找到,如果在元素的未知量的任何元素具有焦點檢查中元素的數組元素具有焦點
if($('#wrapper ul li a:focus')) # there are multiple a tags that are dynamically generated
任何人都知道它是如何做?
我試圖找到,如果在元素的未知量的任何元素具有焦點檢查中元素的數組元素具有焦點
if($('#wrapper ul li a:focus')) # there are multiple a tags that are dynamically generated
任何人都知道它是如何做?
$('#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
}
你不需要'> 0';) – Archer
笑這就是正確的..但離開它那辦法 。 :) –
這只是一個額外的邏輯步驟,不是必需的。它以任何方式產生相同的結果。 – Archer