gpt4 book ai didi

javascript - jQuery - 打开 div onLoad

转载 作者:可可西里 更新时间:2023-11-01 13:34:29 25 4
gpt4 key购买 nike

我有两个 div,我希望第一个从默认展开。

这是我的 jQuery:

$('.infoexpanderHead').click(function () {
$(this).siblings().find('.infoexpanderContent').slideUp();
$(this).find('#infoactive').addClass("active");
$(this).find('.infoexpanderContent').slideDown();
$(this).siblings().find('#infoactive').removeClass("active");
});

我尝试过的

function onload(){
$(this).find('.infoexpanderContent').slideUp();
}

fiddle

http://jsfiddle.net/4SWnm/

最佳答案

处理程序注册后触发列表infoexpanderHead元素的点击事件

$('.infoexpanderHead').click(function () {
$(this).siblings().find('.infoexpanderContent').slideUp();
$(this).find('#infoactive').addClass("active");
$(this).find('.infoexpanderContent').slideDown();
$(this).siblings().find('#infoactive').removeClass("active");
}).first().click();

演示:Fiddle

关于javascript - jQuery - 打开 div onLoad,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20699279/

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