$(document).ready(function(){ // 鎼滅储 $("#search_btn").click(function(){ $("#topsearch").slideToggle();$("html,body").animate({scrollTop :0}, 800); }); if($(window).width()>768){ //榧犳爣鍒掕繃灏卞睍寮€瀛愯彍鍗 $('ul.nav li.dropdown').hover(function() { $(this).find('.dropdown-menu').stop(true, true).slideDown(); }, function() { $(this).find('.dropdown-menu').stop(true, true).slideUp(); }); } $("#search_btn").click(function(){ $(".search").slideToggle(); }); //scrollTop $(window).scroll(function(){ var scrolls = $(window).scrollTop() if (scrolls > 160) { $("#top_nav").addClass("navbar-fixed-top") }else{ $("#top_nav").removeClass("navbar-fixed-top") } }); //鑿滃崟閫変腑楂樹寒 var urlstr = location.href; var urlstatus=false; var urlnum = 1; $("#navbar a").each(function () { if ((urlstr + '/').indexOf($(this).attr('href').replace(/[\r\n ]/g,"")) > -1 && $(this).attr('href')!='' && urlnum != 1) { $(this).addClass('active'); urlstatus = true; }else { $(this).removeClass('active'); } urlnum++; }); if (!urlstatus) {$("#navbar a").eq(0).addClass('active'); } });