JQuery 手风琴激活

发布于 2024-07-25 22:02:06 字数 449 浏览 4 评论 0原文

之外,还有其他方法可以激活手风琴菜单吗?

除了.accordion('activate', indexval); 方法? 在 IE7 中,这改变了我的标题 DIV 格式(它破坏了它)。 手风琴位于页面底部,因此当它被激活时,我的标题就会消失。 有人能为我提供一些帮助吗?

这就是我所拥有的..激活导致顶部标题 div 消失。

 var targetOffset = $('.HwContentInformation').offset().top;
                $('#content,#header').animate({ scrollTop: targetOffset }, .5);

                $("#HwReferences").accordion('activate', 0);

谢谢尼克

Is there another way to activate an accordion menu besides the

.accordion('activate', indexval); method? In IE7 this changes my header DIV formatting (it smashes it). The accordion is at the base of the page so when it is activated my header disappears. Can anyone offer me some help with this?

Here's what I have.. The the activation is causing top header div to disappear.

 var targetOffset = $('.HwContentInformation').offset().top;
                $('#content,#header').animate({ scrollTop: targetOffset }, .5);

                $("#HwReferences").accordion('activate', 0);

Thanks

Nick

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

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

发布评论

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

评论(2

满地尘埃落定 2024-08-01 22:02:06

我曾经有类似的问题,默认情况下,手风琴将使用其标头元素的< h3>标签。 您的页面标题可能具有< h3>标签,您不希望在手风琴中出现。

您能做的就是将#HWReference中的标题更改为< h5>,然后做类似的事情:

$("#HwReferences").accordion({'header': 'h5'}).accordion('activate',0)

hth

I once had a similar problem, by default accordion will use <h3> tags for it's header elements. Your page header probably has an <h3> tag in it that you aren't expecting to be in the accordion.

What you could do, is change the headers in #HwReferences to <h5> and then do something like this:

$("#HwReferences").accordion({'header': 'h5'}).accordion('activate',0)

HTH

我做我的改变 2024-08-01 22:02:06

事实证明,我的内容页面有一些错误的 Javascript,它从内容区域中减去了标题的高度。 这是将标题设置为“0”,从而在页面刷新时隐藏它。 感谢您的尝试。

Turns out that my content page had some faulty Javascript that was subtracting the height of the header from the content area. This was setting the header to '0' thus hiding it when the page refreshed. Thanks for the attempt.

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