$(document).ready(function(){ // nav-li hover e var num; $('.nav-main>li[id]').hover(function(){ /*图标向上旋转*/ $(this).children().removeclass().addclass('hover-up'); /*下拉框出现*/ var obj = $(this).attr('id'); num = obj.substring(3, obj.length); $('#box-'+num).slidedown(300); },function(){ /*图标向下旋转*/ $(this).children().removeclass().addclass('hover-down'); /*下拉框消失*/ $('#box-'+num).hide(); }); // hidden-box hover e $('.hidden-box').hover(function(){ /*保持图标向上*/ $('#li-'+num).children().removeclass().addclass('hover-up'); $(this).show(); },function(){ $(this).slideup(200); $('#li-'+num).children().removeclass().addclass('hover-down'); }); });