我在下面有一个DOM结构:
<div class='box'>
<section id="profile">
<h1>testuser</h1>
<div id="following">
<a class="btn unfollow" style="width: 180px;" rel="nofollow" data-remote="true" data-method="delete" href="/users/testuser/unfollow">Unfollow</a>
</div>
</section>
</div>
然后我有一个响应链接的触发器,我有一个$(this)
. 我可以通过一些控制台日志来确认我现在在 DOM 中。
给我一个 ID 为#following$(this).parent()
的 div。
但是我不能选择 #profile 或 .box 使用parents()
. 做 aparent().parent()
也给出零?
是否有某些原因我无法通过 section 标签向上遍历 DOM 树?