我正在尝试使用切换、slideUp 和 slideDown 显示和隐藏一系列 div。我可以让 div 滑到下,但我不能让它上滑。我之前使用过这个脚本没有发生任何事故,所以我真的很困惑为什么这不起作用。我已经包含了我的脚本和我试图显示和隐藏的 div。
快速说明:当我在“隐藏的车辆”div 中放置一个普通的旧 p 标签时,它运行良好。它像它应该的那样显示和隐藏。但是,当我将表放回该 div 时,它不起作用。
<script type="text/javascript">
$(document).ready(function() {
$(".ShowVehicles").toggle(function() {
$(".HiddenVehicles").slideDown(2000);
$(this).text("Hide All");
}, function () {
$(".HiddenVehicles").slideUp(2000);
$(this).text("Show All");
});
});
<div class="HiddenVehicles" style="display:none; width:730px;">
(there will be a giant table in here)
</div>