/** * created by wjl1 on 2017/9/27. */ $(function(){ //集团概况字段拆分 var subtitle = $('.page-introduction .sub-tit'); subtitle.each(function(i){ var subtitlecontent = $(this).html(); var upperlettercontent = subtitlecontent.substring(0,1); var lowerletter = subtitlecontent.substring(1); $(this).html(lowerletter); $(this).parent().find('.upperletter').html(upperlettercontent); }) //首页tab切换 $('.nav-justified>li').eq(0).addclass('active'); $('.tab-content>div').eq(0).show(); $('.nav-justified>.tab-title').click(function(){ var i = $(this).index(); $(this).addclass('active').siblings().removeclass('active'); $('.tab-content>div').eq(i).show().siblings().hide(); // $('.news-box2-left .more_link_list>a').attr("href","/new/"+(161+i)+".html") }) /*屏蔽鼠标右键*/ $(document).bind("contextmenu",function(e){ return false; }); })