需要 jQuery 选择器来选择所有 'p'表格行中的标签
您好,我的页面中有一些表格。每个表的第一行是正常的,但通过给 tr 标签赋予隐藏类来隐藏其余行。第一行中有一个链接,用于显示当前使用此选择器的更多信息(隐藏行中淡入淡出):
$(this).closest('tr').nextAll("tr.hidden").fadeIn()
但是,在隐藏行中,有一些带有隐藏文本类的 p 标签,我想选择它们来执行此操作但我似乎无法让选择器工作来执行此操作。 Iv 尝试做类似的事情:
$(this).closest('tr').nextAll("tr.hidden > p.hiddentext")
$(this).closest('tr').nextAll(".hidden").nextAll('td > p.hidden')
但无法让它工作。任何帮助将非常感激。
谢谢
Hi I have some tables in my page. The first row of each table is normal but the rest of the rows are hidden by giving the tr tag a class of hidden. There is a link in the first row to show more info (fade in the hidden rows) which currently uses this selector:
$(this).closest('tr').nextAll("tr.hidden").fadeIn()
However within the hidden rows there are some p tags with a class of hiddentext that I would like to select in order to do something to but I can't seem to get a selector working that does this. Iv tried doing things like:
$(this).closest('tr').nextAll("tr.hidden > p.hiddentext")
$(this).closest('tr').nextAll(".hidden").nextAll('td > p.hidden')
Can't get it to work though. Any help would be very much appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
这将选择隐藏行内的所有
p.hiddentext
。您甚至可以在一个命令中链接fadeIn()
并选择p
:Try this:
That would select all
p.hiddentext
inside the hidden rows. You can even chain thefadeIn()
and selecting ofp
's in one command: