试图弄清楚我可以添加哪些代码来使这个 jquery 手风琴的第一部分在加载时打开?

发布于 2024-12-08 01:05:39 字数 497 浏览 0 评论 0原文

这是附加的 JavaScript,不知道如何在加载时打开第一部分。我研究了提到添加触发器类的答案,但不确定在哪里添加它。

//Java Script
function initMenu() {
$('.accordion div').hide();
$('.accordion h3').click(
function() {
$(this).next().slideToggle('normal');
}
);
}
$(document).ready(function() {initMenu();});

手风琴的 html 布局:

<div class="accordion">
 <h3>title</h3>
 <div>content</div>
 <h3>title</h3>
 <div>content</div>
</div>

This is the attached javascript, not sure how to have the first part open on load. I have researched answers that mention adding a trigger class but not sure where to add it.

//Java Script
function initMenu() {
$('.accordion div').hide();
$('.accordion h3').click(
function() {
$(this).next().slideToggle('normal');
}
);
}
$(document).ready(function() {initMenu();});

html layout of accordion:

<div class="accordion">
 <h3>title</h3>
 <div>content</div>
 <h3>title</h3>
 <div>content</div>
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寒尘 2024-12-15 01:05:39
$(".accordion div").first().show()
$(".accordion div").first().show()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文