以下是发生的事情(下面的代码块):
有什么想法吗? 提前致谢, 轨枕
var site = function(){
this.navLI = $('#nav > li').children('ul').css('display','none').end();
this.init();
};
site.prototype = {
init: function(){
this.setMenu();
},
// enables the slide down menu and adds support for ie6
setMenu: function(){
this.navLI.hover(function(){
// mouseover
$(this).find('> ul').stop(true, true).slideDown(250);
}, function(){
// mouseout
$(this).find('> ul').stop(true, true).fadeOut(200);
});
}
}
new site();