$(document).ready(function($) { // 导航 $('#nv li').hover(function(){ $(this).toggleclass('ok').find('.subbox').stop().fadetoggle(); }); // 自定义下拉框 $('.nice-select').click(function(e){ $('.nice-select').not(this).find('.option').hide(); $(this).find('.option').stop().fadetoggle(); e.stoppropagation(); }); $('.nice-select li').hover(function(e){ $(this).toggleclass('on'); e.stoppropagation(); }); $('.nice-select li').click(function(e){ var val = $(this).text(); $(this).parents('.nice-select').find('input').val(val); $('.nice-select .option').hide(); e.stoppropagation(); }); $(document).click(function(){ $('.nice-select .option').hide(); }); // 选项卡 $(".tab li").click(function(){ var $vv=$(this).parent(".tab").attr("id"); $($vv).hide(); $(this).parent(".tab").find("li").removeclass("on"); var xx=$(this).parent(".tab").find("li").index(this); $($vv).eq(xx).show(); $(this).addclass("on"); }); });