var tabIndex, timeout,tabIndexs; for (var i = 0; i < $(".link-list .item").length; i++) { if ( $(".link-list .item") .eq(i) .hasClass("active") ) { tabIndex = i; } } $(".link-list .item").hover( function () { $(this) .addClass("active") .siblings() .removeClass("active"); }, function () { $(".link-list .item").removeClass("active"); $(".link-list .item") .eq(tabIndex) .addClass("active"); } ); // 涓氬姟浣撶郴鏄剧ず闅愯棌 $("#hover").mouseenter(function () { if ($("#hover").children("#huoqu").is(":animated")) { //children(".dropdown") 鎵惧埌绫诲悕涓?dropdown 鐨勫叏閮ㄥ瓙闆 return; // :animated 閫夋嫨褰撳墠鐨勫姩鐢诲厓绱 } // timeout = setTimeout(function () { $("#huoqu").slideDown(200); // }, 100) }); $(".link-list").mouseleave(function () { // clearTimeout(timeout); $("#huoqu").slideUp(200); }); $(document).scroll(function(){ $("#huoqu").slideUp(200); }) $(".tomorenews a").hover(function(){ $(this).find('.more').hide(); $(this).find('.hovershow').show(); },function(){ $(this).find('.more').show(); $(this).find('.hovershow').hide(); }) // 涓氬姟浣撶郴鏄剧ず闅愯棌鍐呴儴鍒囨崲浠g爜 for (var i = 0; i < $(".itemCustom").length; i++) { $(".itemCustom")[i].index = i; $(".itemCustom")[i].onmouseover = function() { for (var j = 0; j < $(".itemCustom").length; j++) { $(".tabs_contentItem")[j].style.display = "none"; $(this) .addClass("Active") .siblings() .removeClass("Active"); } $(".tabs_contentItem")[this.index].style.display = "block"; }; } $(".itemCustom")[0].onmouseover(); // 鏅烘収鑳芥簮 鏅烘収鍔犳补 hover鏁堟灉 // $(".items").each(function(){ // $(this).hover(function(){ // $(this).addClass("linkList_active").siblings().removeClass("linkList_active"); // }) // }); for (var i = 0; i < $(".refuel_href .items").length; i++) { if ( $(".refuel_href .items") .eq(i) .hasClass("linkList_active") ) { tabIndexs = i; } } $(".refuel_href .items").hover( function () { $(this) .addClass("linkList_active") .siblings() .removeClass("linkList_active"); }, function () { $(".refuel_href .items").removeClass("linkList_active"); $(".refuel_href .items") .eq(tabIndexs) .addClass("linkList_active"); } );