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.
<div id="123"> <div id="456"></div> </div>
在这种情况下,我将如何访问子 div,即使用 jQuery 的具有 456 id 的子 div?
以下是选择它的最简单方法的列表:
$('#456'); $('#123 div'); $('#123 > div'); $('div div');
基本上,只需使用您将使用的 CSS 选择器,它就会起作用。
你也可以做这样的事情。
outerDiv = $('#123'); $('#456',outerDiv);