$(document).ready(function() { // 导航 $(".nav ul li").hover( function() { $(this).children('').next().stop(true, true).slidedown("fast"); }, function() { $(this).children('').next().stop(true, true).slideup("fast"); } ); // 搜索 $(".sobox .tit").click(function() { $(this).toggleclass('on'); $(this).siblings('.so').slidetoggle('fast'); if ($(this).hasclass("on")) { $(".header").addclass('on'); } else { $(".header").removeclass('on'); } }) // 滚动导航悬浮 $(document).on('scroll', function() { var scrollh = $(this).scrolltop(); if (scrollh > $('.header').height()) { $('.header').addclass('fixed'); } else { $('.header').removeclass('fixed'); } }) //锚点 $('.nav .d1 dl dd a').click(function() { var _id = $(this).attr('href'); $('html, body').animate({ scrolltop: $($.attr(this, 'href')).offset().top - 80 }, 500); return false; }); });