jquery gridview 索引 n 之前所有行的行高总和
我的页面上有网格视图,行高可能会有所不同。我有一些可点击的对象,它们对应于网格视图中的行索引。因此,单击的项目的索引将是我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
:lt()
选择器:You can use the
:lt()
selector: