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.
我有一张桌子,当我按下第一行时,我只是想滑动第二行的内容。我正在使用 slideToggle("slow") 但没有幻灯片(没有动画),它只是直接切换第二行并且需要太多时间..
这里是:
http://jsfiddle.net/7LH3p/4/
谢谢
你需要display: block元素slide才能工作。tr默认情况下,元素不是块元素,因此您需要在 CSS 中明确指定:
display: block
slide
tr
tr { display: block; }