本文介绍了如何在jQuery中隐藏表格行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一张这样的桌子

            <table class="headerTable" id="headerTable">
                <tbody>
                    <tr class="hh">
                        <td>test1</td>
                        <td>18,164</td>
                    </tr>
                    <tr class="member">
                        <td>test3</td>
                        <td>24,343</td>
                    </tr>
                </tbody>
            </table>

我想隐藏带有类成员的行.

I want to hide the rows with class member.

我做了类似的事情,但是它不起作用.

I did something like this but it is not working..

$("#headerTable tbody tr:member").hide();

推荐答案

尝试一下

$("#headerTable tbody tr.member").hide();

jQuery中的选择器就像CSS选择器一样,因此您应该能够像这样使用它们.

The selectors in jQuery like CSS selectors, so you should be able to use them like that.

您可以在此处浏览 jQuery选择器文档,其中充满了您可以做的有趣的事情.

You can browse the jQuery selector documentation here, it's full of interesting things you can do.

这篇关于如何在jQuery中隐藏表格行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 02:35