jQuery手风琴()不起作用

我的jQuery手风琴()没有处理我的HTML段落。 我哪里做错了?

simple.html

      

This is an According Example

Heading for first sentence

This is the first sentence.

Heading for second sentence

This is the second sentence.

Heading for third sentence

This is the third sentence.

myscript.js

 window.onload = function(){ $("#accordion").accordion(); }; 

用这个…

          

This is an According Example

Heading for first sentence

This is the first sentence.

Heading for second sentence

This is the second sentence.

Heading for third sentence

This is the third sentence.

把它放在头标签中

  

并看到这个jsFiddle示例

两个问题:您不包括jQuery UI CSS,您的脚本也必须包含在您的 。 用这个:

  My Title      

并从页面底部删除脚本。

小提琴: http : //jsfiddle.net/cxJW6/ (这并不意味着很多,因为你的问题是在你的页面中包含jQuery + jQuery UI)

 $(document).ready(function() { $("#accordion").accordion(); });