Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我已经编写了一个 html 代码来隐藏/显示列。我使用了“td:nth-child()”函数来切换列以隐藏和显示。这是代码的链接。
$(function() { $("#toggle").click(function() { $("td:nth-child(3)").toggle(); }); });
我有 2 个标题。一个是主标题,一个是它的子标题。我正在切换第三列,但该列的子标题没有切换&我想切换包括子列在内的完整列,那么该怎么做?
JSFiddle
提前致谢。
我猜 toggle 不是 colSpan 感知的。也许这会有所帮助,或者您将需要使用知道 colSpan的插件