下面是我正在使用的代码,如您所见,有一个名为“parent”的 id 和一个名为“grandchilden”的 id。我的目标是获取此 div“孙子”中的内容。我怎样才能实现它?
我试过了$(this).closest('.grandchildren')
,但没有用。
<div id="parent">
<a href="#">
<div>
<p id="grandchildren">
This is a content
</p>
</div>
</a>
</div>