$(function(){ var page = 1,limit=1; var oid =$('.chapter p em').attr('data-id'); // 下一篇 $('.chapter p em').on('click',function(){ page++; fnAjax(); }) // 下一篇请求方法 function fnAjax(){ $.ajax({ type: "post", url: "/news/next", data:{id:oid,page:page,limit:limit}, dataType: "json", success: function(data){ if(data.code == 200){ // console.log(data.data) $('.chapter p.l span').html(''+data.data.left+'') $('.chapter p.r span').html(''+data.data.subject+'') } } }); } fnAjax(); // 换一换 $('.lp_push em').on('click',function(){ $.ajax({ type: "post", url: "/news/morehouse", dataType: "json", success: function(data){ if(data.code == 200){ // console.log(data.data) var data=data.data; var _li =''; $.each(data,function(k,v){ _li +='
  • '; _li +='' _li +='
    '; _li +='
    '; _li +='

    '+v.name+'

    '; _li +='

    '+v.main_city+' - '+v.city_name+'

    '; _li +='

    '+v.price+''+v.price_nuit+'

    '; _li +='

    '+v.main_units+'

    '; _li +='
    '; _li +='
    '; _li +='
  • '; }) $('.push_box ul').html(""); $('.push_box ul').append(_li); } } }); }) }) /*调用的方法*/ PublicAction.AjaxSend( { CORID:'apply_su', /*操作ID*/ } ); /*调用的方法*/ PublicAction.AjaxSend( { CORID:'apply_s', /*操作ID*/ } ); $(function(){ $('.details_cont').find('img').each(function(){ var $that = $(this); $that.removeAttr('width'); $that.removeAttr('height'); if($that.attr('alt') != 'alt'){ $that.css({'width':'100%','height':'auto'}); } }) var swiper = new Swiper('.newsSlide_box', { loop : true, autoplay : 5000, pagination: '.newsSlide .swiper-pagination', paginationClickable: true, paginationBulletRender: function (swiper, index, className) { return '' + (index + 1) + ''; } }); var swiper = new Swiper('.hotwenda_main', { loop : true, autoplay : 5000, slidesPerView:1, autoHeight: true, //高度随内容变化 }); })