0
我必須錯過:first-child
僞選擇器的一些細微差別。我在我的代碼以下(其中je
是對應一個jQuery對象到一個節點在DOM)::第一個孩子不返回任何元素
const errors = je.find('div.error');
console.log(errors.length + ' errors found');
const firstError = je.find('div.error:first-child');
console.log(firstError.length + ' first errors found ');
上述原木:
1 errors found
0 first errors found
如果某些元件被發現,當不可我是否期望:first-child
僞選擇器返回其中的第一個?
jFiddle SSCCE here
你已經有錯誤發現div,只需使用https://api.jquery.com/first/ – Huangism
保存第一個@黃色你是對的 - 我讀錯了代碼。 OP,你的代碼在正確的場景下工作:https://jsfiddle.net/pkx418or/。我們需要查看您的HTML結構以幫助您。 –