jQuery:如何在 jQuery UI 手风琴中设置当前打开的 div 的索引?

发布于 2024-08-14 17:01:23 字数 464 浏览 3 评论 0原文

我正在尝试获取一个 jQuery UI Accordion,最初所有 div 都折叠起来。

文档说

  // getter
  var active = $('#div0').accordion('option', 'active');
  // setter
  $('#div0').accordion('option', 'active', -1);

这些在 v1.7.2 中都不起作用。 getter 总是返回 null,而 setter 没有效果。

我发现了这个错误: http://dev.jqueryui.com/ticket/4576 ,包括对 getter 的修复。

但设置器仍然不起作用。

有人修复了设置器吗?

I'm trying to get a jQuery UI Accordion, with initially all divs collapsed.

The doc says

  // getter
  var active = $('#div0').accordion('option', 'active');
  // setter
  $('#div0').accordion('option', 'active', -1);

Neither of these was working in v1.7.2. The getter always returned null, and the setter had no effect.

I found this bug: http://dev.jqueryui.com/ticket/4576 , which included a fix for the getter.

But the setter still doesn't work.

Anyone have a fix for the setter?

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

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

发布评论

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

评论(2

落花浅忆 2024-08-21 17:01:23

您是否尝试仅使用 active 选项初始化手风琴?

$('#div0').accordion({active: 1});

或者使用激活方法。查看文档 - http://docs.jquery.com/UI/Accordion#method-激活

$('#div0').accordion('activate', 1);

Did you try initializing the accordion with just the active option?

$('#div0').accordion({active: 1});

Or use the activate method. Checkout the docs - http://docs.jquery.com/UI/Accordion#method-activate

$('#div0').accordion('activate', 1);
蔚蓝源自深海 2024-08-21 17:01:23

我不知道如何将任意索引设置为打开,但是...

我可以创建一个没有任何打开的手风琴,通过:

$(document).ready(function() {
    $('#div0').accordion({collapsible:true, active:false});
});

I'm not sure how to set arbitrary indexes as open, but...

I can create a create an accordion with nothing open, via:

$(document).ready(function() {
    $('#div0').accordion({collapsible:true, active:false});
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文