$(function () { $('.try-bjb-mailbox').on('mouseenter', function () { $(this).addClass("active") $(this).find('.try-mailbox-h').addClass("active") }) $('.try-bjb-mailbox').on('mouseleave', function () { $(this).removeClass("active") $(this).find('.try-mailbox-h').removeClass("active") }) $('.try-search-ss').click(function(){ $('form.box-search').submit() }) $('.try-search-input-ss').click(function(){ $('form.box-search2').submit() console.log(1); }) $(function(){ $(".try-aside .active-bg").css("top", $('.selectedNav')[0].offsetTop + "px"); // 内页侧边栏 $('.try-aside ul li').hover(function (e) { $('.try-aside .active-bg').css("top", e.currentTarget.offsetTop + "px"); },function (e) { $(".try-aside .active-bg").css("top", $('.selectedNav')[0].offsetTop + "px"); }) }); // 头部导航下拉 // $('.try-nav>ul>li').hover(function(){ // if($(this).find('.try-nav-h').css('display') == 'none'){ // $(this).find('.try-nav-h').fadeIn(100) // }else{ // $(this).find('.try-nav-h').fadeOut(100) // } // }) $('.try-nav>ul>li').on('mouseenter', function () { $(this).find('.try-nav-h').addClass("active") }); $('.try-nav>ul>li').on('mouseleave', function () { $(this).find('.try-nav-h').removeClass("active") }); // 底部链接展开 $('.try-footer-center-link-s').hover(function () { if ($(this).find('.try-footer-center-link-i-h').css('display') == 'none') { $(this).find('.try-footer-center-link-i-h').fadeIn(300) } else { $(this).find('.try-footer-center-link-i-h').fadeOut(300) } }); // 信箱展开 $('.try-mailbox ul li').hover(function () { if ($(this).find('.try-mailbox-s').css('display') == 'none') { $(this).find('.try-mailbox-s').fadeIn(100) } else { $(this).find('.try-mailbox-s').fadeOut(100) } }) // 笔记本信箱展开 $('.try-mailbox-h ul li').hover(function () { if ($(this).find('.try-mailbox-h-s').css('display') == 'none') { $(this).find('.try-mailbox-h-s').fadeIn(100) } else { $(this).find('.try-mailbox-h-s').fadeOut(100) } }) }); //判断是否是 json字符串 function isJSON(str) { if (typeof str == "string") { try { var obj = JSON.parse(str); if (typeof obj == "object" && obj) { return true; } else { return false; } } catch (e) { return false; } } return false; }