我对手风琴 UI 中的空项目有疑问。
我有 3 个部分。
+ Section 1
+ Section 2 (empty)
+ Section 3
html
<div id="accordion">
<h3>Section 1</h3>
<div>content 1</div>
<h3>Section 2 (empty)</h3>
<div></div>
<h3>Section 3</h3>
<div>content 3</div>
</div>
jQuery
$(function() {
$("#accordion").accordion({
autoHeight: false,
active: false,
collapsible: true,
});
});
示例:http: //jsfiddle.net/ty5ZH/
当我单击而Section 2
不是单击其他部分时,手风琴不起作用。
如果我单击Section 2
比Section 2
再次单击比单击其他部分一切正常。
是 jQuery UI 手风琴错误吗?