JQuery 选择器选择 GridView 分页

发布于 2024-09-26 18:48:30 字数 223 浏览 1 评论 0原文

我有下面的选择器:

$("#<%=GridView1.ClientID%> td:nth-child(5)").hover('doSomething)

它选择由 GridView 生成的第 5 个 td。这工作正常。

我的问题是我启用了分页,并且它还选择了 <上一页 1 2 3 下一页 >在底部,有什么想法如何排除这个吗?

I've got the selector below:

$("#<%=GridView1.ClientID%> td:nth-child(5)").hover('doSomething)

Which is selecting the 5th td that is generated by a GridView. This is working fine.

My problem is I have paging enabled, and its also selecting the < Prev 1 2 3 Next > at the bottom, any ideas how to exclude this?

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

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

发布评论

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

评论(2

不即不离 2024-10-03 18:48:30

如果检查 HTML 输出,您将看到分页元素位于嵌套表中,因此只需使用选择器进行更多定义即可:

$("#<%=GridView1.ClientID%> > tbody > tr > td:nth-child(5)").hover('doSomething)

If you check the HTML output you will see the paging elements are in a nested table, so just be a little more defined with your selector:

$("#<%=GridView1.ClientID%> > tbody > tr > td:nth-child(5)").hover('doSomething)
好菇凉咱不稀罕他 2024-10-03 18:48:30

修改您的选择器以选择除最后一行之外的所有行中的第 5 个 ,假设分页位于最后一个 内,

请尝试:

$("#<%=GridView1.ClientID%> tr:not(:last-child) td:nth-child(5)").hover(doSomething)

modify your selector to select the 5th <td>s in all rows except for the last one, assuming the paging is inside the last <tr>

try:

$("#<%=GridView1.ClientID%> tr:not(:last-child) td:nth-child(5)").hover(doSomething)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文