使用 jQuery 的带有可见选项的手风琴面板

发布于 2024-08-17 18:50:07 字数 92 浏览 4 评论 0原文

我对 jQuery 很陌生。 我想使用 jQuery 创建一个带有可见性选项的手风琴面板。

是否可以在 jQuery 中为手风琴控件设置可见 false?

I am very new to jQuery.
I want create a an accordion panel using jQuery with a visibility option.

Is it possible to set visible false for an accordion control in jQuery?

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

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

发布评论

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

评论(3

巴黎盛开的樱花 2024-08-24 18:50:07

这就是你想要的我明白 http://www.learningjquery.com/2007/03 /手风琴疯狂

享受编码的乐趣。

This is what you want I understand http://www.learningjquery.com/2007/03/accordion-madness.

Enjoy coding.

黑凤梨 2024-08-24 18:50:07

请参阅使用 jQuery 的手风琴

See Accordion using jQuery

挖鼻大婶 2024-08-24 18:50:07

使用 手风琴插件 - 或者如果它足够简单,也可以自己推出

$('#my-list li').css({ display: none }).click(function() { $(this).slideToggle(500); });

的文档href="http://docs.jquery.com/Selectors" rel="nofollow noreferrer">选择器css事件处理程序效果 了解其工作原理。它非常基础,但我通常只需要基础知识,而且它肯定比合并 ~8kb(或更多)插件更好。

Use an accordion plugin - or if it's simple enough, roll your own

$('#my-list li').css({ display: none }).click(function() { $(this).slideToggle(500); });

Check out docs for selectors, css, event handler and effects to learn how this works. It's very basic, but I often only ever need the basics, and it's sure better than incorporating an ~8kb (or more) plugin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文