0

我在我的应用程序中使用 jquery 手风琴。

我正在使用 ul 和 li 在手风琴内容中显示一些链接。使用 ul 和 li 时,活动的手风琴内容在链接下方有很多空白空间。

通过查看 Firebug,它显示了每个活动手风琴内容的以下样式。

html:

<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active" style="height: 74px;" role="tabpanel">

CSS:

element.style {
   display:none;
   height:74px;
}

如何根据手风琴内容删除高度或更改高度?

4

1 回答 1

1

设置 autoHeight: false 有效。

$('#Accordion').accordion({ autoHeight: false })
于 2010-01-28T20:25:58.303 回答