jquery gridview 索引 n 之前所有行的行高总和

发布于 2024-10-02 00:48:57 字数 283 浏览 2 评论 0原文

我的页面上有网格视图,行高可能会有所不同。我有一些可点击的对象,它们对应于网格视图中的行索引。因此,单击的项目的索引将是我的 gridview 的行号。

jQuery 中是否有任何方法可以获取 asp gridview 中直到第 n 行的行的总和。

因此,如果我单击索引 3,我会返回 (rowheight[0] + rowheight[1] + rowheight[2])

我想知道这一点的原因是这样我可以将 gridview 向下滚动到单击的项目。我需要知道要滚动多少像素。

谢谢束

I have a grid view on a page and the row height can vary. I have some clickable objects that correspond to the index of the rows in my grid view. So the index of the item clicked would be the row number of my gridview.

Is there any way in jQuery to get the sum of the rows in an asp gridview height up to row n.

So if I clicked index 3 i would get back (rowheight[0] + rowheight[1] + rowheight[2])

The reason i want to know this is so i can scroll the gridview down to the item clicked. I need to know how many pixels to scroll though.

Thanks Bunches

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森罗 2024-10-09 00:48:57

您可以使用 :lt() 选择器:

var index = 3;
var totalHeight = 0;
$("#yourGridViewId tr:lt(" + index + ")").each(function() {
    totalHeight += $(this).height();
});

You can use the :lt() selector:

var index = 3;
var totalHeight = 0;
$("#yourGridViewId tr:lt(" + index + ")").each(function() {
    totalHeight += $(this).height();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文