我在我的应用程序中使用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;
}
如何根据手风琴内容移除高度或更改高度?
答案 0 :(得分:1)
设置autoHeight:false有效。
$('#Accordion').accordion({ autoHeight: false })