/** * created by luhao on 2017/8/17. */ $(document).ready(function () { $(".newscenter").on("click",function () { $(".c-1-2").stop().hide(); $(".c-1-1").stop().show(); $(".c-1 .c-title a").eq(1).removeclass("current") $(".c-1 .c-title a").eq(0).addclass("current") }) $(".notice").on("click",function () { $(".c-1-1").stop().hide(); $(".c-1-2").stop().show(); $(".c-1 .c-title a").eq(0).removeclass("current") $(".c-1 .c-title a").eq(1).addclass("current") }) $(".c-3-menu ul li").each(function (index) { $(this).click(function () { var x = index + 2 $(".c-3").find("div.current").removeclass("current") $(".c-3").find("div").eq(x).addclass("current") $(".c-3-menu ul").find("li.current").removeclass("current") $(".c-3-menu ul").find("li").eq(index).addclass("current") }) }) $(".datanav ul li").each(function (index) { if(index != 0){ $(this).click(function () { $(".searchdata").find("div.current").removeclass("current") $(".searchdata").find("div").eq(index).addclass("current") $(".datanav ul").find("li.current").removeclass("current") $(".datanav ul").find("li").eq(index).addclass("current") }) } }) })