JQuery 手风琴激活
之外,还有其他方法可以激活手风琴菜单吗?
除了.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我曾经有类似的问题,默认情况下,手风琴将使用其标头元素的
< h3>
标签。 您的页面标题可能具有< h3>
标签,您不希望在手风琴中出现。您能做的就是将#HWReference中的标题更改为
< h5>
,然后做类似的事情: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:HTH
事实证明,我的内容页面有一些错误的 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.