$("input").focus(function(){ "use strict"; $(this).val("").css("color","#000000"); }); //一级导航 $(".bdjtnavbtn a").mouseenter(function(){ "use strict"; $(".bdjtnavhover").show(); var s1 = $(this).index(); if(s1 === 5){ $(".bdjtnavhover").hide(); }else{ $(".centerbox1").eq(s1).show().siblings().hide(); } var w1 = $(".centerbox1").eq(s1).width(); var w2 = -w1*0.5+"px"; $(".centerbox1").eq(s1).css("margin-left",w2); var h1 = $(".centerbox1").eq(s1).height(); var h2 = h1+40+"px"; $(".bdjtnavhover").css("height",h2); }); $(".bdjtsearch").mouseenter(function(){ "use strict"; $(".bdjtnavhover").hide(); }); $(".bdjtnavhover").mouseleave(function(){ "use strict"; $(".bdjtnavhover").hide(); }); //底部功能 $(".wex1").mouseenter(function(){ "use strict"; $(".bdjtqrcode").show(); }); $(".wex1").mouseleave(function(){ "use strict"; $(".bdjtqrcode").hide(); }); $(".proc1").mouseenter(function(){ "use strict"; $(".bdjtproc").show(); }); $(".proc1").mouseleave(function(){ "use strict"; $(".bdjtproc").hide(); }); //按钮位置 var t5 = $(".bdjtnewimgbtn ul li").length; var t6 = 370-(14*t5+20*t5); var t7 = t6/2; $(".bdjtnewimgbtn ul").css("margin-left",t7);