Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$('#masterDiv div') 让我得到 masterDiv 下面的所有 div 和嵌套在这些 div 中的 div。如何获得只有1级的孩子?
使用这个$('#masterDiv > div')。
$('#masterDiv > div')
它是子选择器。
$("#masterDiv").children("div")
阅读文档以获取更多信息。
$('#masterDiv').children('div')