let companyid = 0; $(function(){ companyid = $('#cos .item:first').data('id'); getCompany(); }); $('#cos .item').click(function () { $(this).addClass('active') $(this).siblings().removeClass("active"); companyid = $(this).data('id'); getCompany(); }) function getCompany(){ $.getJSON('/index.php?m=company&c=api&a=show&id='+companyid,function(res){ if(res.state=='1'){ if(res.data.image!=''){ $('.detail .image').css({"background":"url("+res.data.image+") center center / contain no-repeat"}); }else{ $('.detail .image').css({"background":"#f2f2f2"}); } $('.detail h3').text(res.data.title); $('.detail .text').html(res.data.description); console.log(res.data.content); if(res.data.content!=''){ $('.detail .ac').html('鏌ョ湅璇︽儏'); }else{ $('.detail .ac').empty(); } }else{ console.log(res.msg); } }); }