我正在使用JQuery手風琴,它的工作原理和打開和關閉罰款....但我想添加一個手風琴子菜單,這不工作,也不是樣式。JQuery手風琴SubMenu /嵌套不工作
我的圖書館:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/start/jquery-ui.css" type="text/css" rel="Stylesheet" />
我說這個測試:
<p><a href="#">TEST MAIN MENU</a></p>
<div>
<h3><a href="#">Sub header</a></h3>
<div>sub content here</div>
</div>
and "Sub header" is not styled as a header nor it wraps up the div below it like "TEST MAIN MENU" does...
On the <head> I have this:
<script>
$(function() {
$("#accordion").accordion({
active: false,
autoHeight: false,
collapsible: true,
alwaysOpen: false
});
});
function collapseAll() {
$("#accordion")
.filter(":has(.ui-state-active)")
.accordion("activate", -1);
$(".ui-accordion-header").blur();
}
</script>
All I need is to make "<h3><a href="#">Sub header</a></h3>"
一個可摺疊的div了。
此答案包含2個問題。你爲什麼說你不能有一個子菜單?請證明。 – 2011-12-28 13:48:43
還有1個答案 – Richard 2011-12-28 13:50:37
嗯,看看這個http://jsfiddle.net/qdSu5/ – 2011-12-28 13:51:49