jQuery 手风琴和滑块不能​​一起工作

发布于 2024-12-06 05:20:02 字数 390 浏览 0 评论 0原文

我们有以下代码:

http://jsfiddle.net/c5cpk/

应该显示一个手风琴,内容为每个窗格都有一个 jquery 滑块。

目前它不只是显示控件。

如果您编辑 CSS 行:

#accordion .pane {  display:none;  height:705px; color:#fff; font-size:12px; }

并删除 display:none,您将看到窗格展开并且幻灯片正常工作。

任何人都可以帮助我,因为我对它的(不)工作方式感到非常沮丧。

We have the following code:

http://jsfiddle.net/c5cpk/

Which should show an accordion with content in each pane along with a jquery slider.

At the moment it doesn't it just show's the controls.

If you edit the CSS line:

#accordion .pane {  display:none;  height:705px; color:#fff; font-size:12px; }

and take away the display:none you will see the panes expanded and the slideshows work correctly.

Could anyone help me out as getting quite frustrated with the way it's (not) working.

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

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

发布评论

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

评论(1

清晨说晚安 2024-12-13 05:20:02

通过在页面加载后不指定显示来解决:

jQuery('#accordion div.pane').css('display', 'none');

Solved by assigning the display none after the page had loaded using:

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