我真的無法在其他問題上找到解決方案!JQuery Accordion:關閉標題時如何更改頁面背景
我有與此類似的摺疊式菜單:
<div id="accordion" style="font-size:1em;">
<h3 id="lactics" style="margin-top:50px"><a href="#">Làctics</a></h3>
<div>
<p><a href="#">Iogurts</a></p>
<p><a href="#">Pastissos</a></p>
<p><a href="#">Llet</a></p>
<p><a href="#">Formatges</a></p>
<p><a href="#">Altres</a></p>
</div>
<h3 id="embotits"><a href="#">Embotits</a></h3>
<div>
<p><a href="#">Pernil</a></p>
<p><a href="#">Embotits</a></p>
<p><a href="#">Botifarres</a></p>
</div>
</div>
而且我有一個jQuery代碼:
$(document).ready(function() {
$(function() {
$("#accordion").accordion({
collapsible: true,
active: true,
autoHeight: false,
});
})
$('#lactics').click(function() {
$("#prods_vcts").css("background","url(images/taula_vcts_lactics.png) no-repeat");
})
$('#embotits').click(function() {
$("#prods_vcts").css("background","url(images/taula_vcts_embotits.png) no-repeat");
});
});
的想法是,頁面變化的背景下,當用戶點擊其他菜單的標題。
但是,我找不到在沒有活動標題(即所有標題都關閉)的情況下將背景設置爲'無'的方法。然後,背景是頁面標準。我試過綁定和其他的東西,但我真的不能這樣做。
任何想法?
謝謝!它完美運行,並且是一個非常完整的解決方案 – Ramon