$(function() { var prjswiper = { setprevbtn: function(swiper, name) { $(name).on('click', function() { swiper.swipeprev(); }); }, setnextbtn: function(swiper, name) { $(name).on('click', function() { swiper.swipenext(); }); } }; var prjdetail = new swiper('.prj-detail', { autoplay: 5000, //可选选项,自动滑动 loop: true, //可选选项,开启循环 calculateheight : true, }); prjswiper.setprevbtn(prjdetail, '.prj-detail .prev'); prjswiper.setnextbtn(prjdetail, '.prj-detail .next'); if (($('.prj-detail .swiper-wrapper').html()-0)===0){ $('.prj-detail').css('display', 'none'); } });