//选项卡 function tab(tSel,wSel,sItemSel){ $(tSel+" li").click(function(){ var title = $(this).index(); $(tSel+" li a").removeClass("on"); $(this).children("a").addClass("on"); $(wSel+" "+sItemSel).hide().get(title).style.display="block"; }); }; $(function(){ //main $("#m_list li").find('[data-role="m_hidden"]').addClass("t_form"); $("#m_list li").hover(function(){ $(this).find('[data-role="m_show"]').hide(); $(this).find('[data-role="m_hidden"]').show(); },function(){ $(this).find('[data-role="m_show"]').show(); $(this).find('[data-role="m_hidden"]').hide(); }); //公告 $("#notice").eKingScroll({direction:"top"}); //滚动图片 $("#ad").eKingScroll({direction:"top"}); $(".ad_box").hover(function(){ $(".nextpage,.frontpage").show(); },function(){ $(".nextpage,.frontpage").hide(); }); })