1
我想默認顯示一個newsticker,但它的定位方式是,當懸停菜單時,subnav應該替換newsticker。但我不能完全得到它的工作:Toggling subnav和newsticker
的jsfiddle:http://jsfiddle.net/rd9jS/
$(document).ready(function() {
$('#nav > ul > li').mouseover(function() {
$('#news').hide();
$(this).parent().find("ul.children").not($('ul.children', this)).hide();
$('ul.children', this).slideDown();
});
$('#nav .children').mouseleave(function (e) {
setTimeout(function(){
$(this).hide();
$('#news').slideDown();
},2000);
e.stopPropagation();
});
});
真棒!今天學會了一個新的竅門! :d – 3zzy