正如您在下面的 jQuery 代码中看到的那样,我指向表 td 中的第一个 div。
$('table tr td div').css("position", "relative");
但是我遇到了一些问题,所以我尝试了这个:
$('table tr td').parents('div:first').css({position:'relative'});
但是这个也不好用。我的代码有什么问题?
我的 HTML 结构是:
<table>
<tr>
<td><!-- all id for the div and image inside the td are dynamic -->
<div><!-- Need to access this div -->
<!-- content --->
</div>
</td>
</tr>
</table>