我有以下的jQuery插件:http://jqueryfordesigners.com/slide-out-and-drawer-effect/jQuery的:隱藏「活動類」,當鼠標不超過
現在的問題是:我想關閉激活「抽屜」當鼠標還沒有結束的元素。 jQuery被設置爲保持活動狀態,直到mouseover應用到另一個抽屜元素。如果沒有在任何抽屜上懸停,我如何關閉所有抽屜?
初始化代碼:
$(function() {
$('UL.drawers').accordion({
// the drawer handle
header: 'H2.drawer-handle',
// our selected class
selectedClass: 'open',
// match the Apple slide out effect
event: 'mouseover'
});
});
而且,當我申請了「開放」類抽屜元素的CSS(.drawer-handle.open {}
),活動抽屜手柄不變色(動畫),因爲它應該。這是爲什麼?我在Joomla 1.7內使用PHP
謝謝!
@Emmanuel:在編輯爲什麼你會_introduce_錯誤? – 2012-01-10 16:19:46
您可以在包裝整個菜單的div的mouseout上隱藏抽屜。 – 2012-01-10 16:20:02
謝謝你的回答肖恩。我是否關閉了jquery 標籤中的父/包含Div元素?以及如何調用該功能? – DextrousDave 2012-01-10 20:32:19