我的 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 的替代品。