我的html看起来像这样
<div id="menu">
<h3>Section 1</h3>
<div>
<p>I'm the first section!</p>
</div>
<h3>Section 2</h3>
<div>
<p>I'm the second section!</p>
</div>
<h3>Section 3</h3>
<div>
<p>I'm the third section!</p>
</div>
</div>
这是我的js
$(document).ready(function() {
$('#menu').accordion();
});
不管怎样,我的手风琴都没有工作,即使我直接从codeacademy那里拿走了它。以前,我已经制作了自己的手风琴而且它没有工作,所以我把它从Codeacademy上取下来,我第一次学习它并且仍然无法正常工作。我正在托管谷歌。这有什么不对吗?
我尝试添加标题:'h3'
但它仍然没有效果。它看起来像是h3和div的替代品。
答案 0 :(得分:1)
你的jquery链接应该在jquery UI之前,否则它将无效。