gpt4 book ai didi

javascript - super 简单的 jQuery 选项卡 - 没有 UI - 页面加载时折叠

转载 作者:行者123 更新时间:2023-11-28 06:01:51 25 4
gpt4 key购买 nike

我希望所有选项卡在页面加载时折叠。现在第一个默认打开:

  $(document).ready(function($) {
$('#forms').find('.forms-toggle').click(function(){

//Expand or collapse this panel
$(this).next().slideToggle('fast');

//Hide the other panels
$(".forms-content").not($(this).next()).slideUp('fast');

});
});

HTML 和 CSS 在这里:

https://jsfiddle.net/re8x8cx3/

最佳答案

将其放入 dom 中准备好,

 $(".forms-content").hide();

那么代码将是,

$(document).ready(function($) {
$(".forms-content").hide();
$('#forms').find('.forms-toggle').click(function() {
//Expand or collapse this panel
$(this).next().slideToggle('fast');
//Hide the other panels
$(".forms-content").not($(this).next()).slideUp('fast');
});
});

Fiddle

关于javascript - super 简单的 jQuery 选项卡 - 没有 UI - 页面加载时折叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37212469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com