html结构为:
<table class='cls_Name'>
<tr>
<td>Name</td>
</tr>
<tr>
<td>
<div>some operation/text</div>
</td>
</tr>
</table>
为了得到我正在做的桌子的高度,如下所示:
$('.cls_Name').height();
它返回正确的值。
现在我想要 div 的高度:
$('.cls_Name').children('td:nth-child(2)').children('div').height();
但它返回 Null 或有时也会出错。
请让我知道是否有人对此有想法。
提前致谢