我在html中有一个动态表。 我可以通过以下功能得到我的表格行。
HTML:
<tr ng-click="heightChecker(this)" ng-repeat='DFC in DetailsOfFloorsCurrent'<td>blahblah</td></tr>
脚本:
$scope.heightChecker = function (row) {
alert(row.$index-2);
}
我想从页面顶部获取行高。 我可以获得我的排,但是我无法从页面顶部获得像素高度。 有什么办法吗? (注意:我的表是动态的,有n行和n列。)
答案 0 :(得分:0)
您可以使用jquery offset()
:
$('row').offset().top
使用它可以获得距离顶部的距离。