window.onload = function () { var mySwiper = new Swiper('.banner-swiper-container', { loop: true, effect: 'fade', speed:800, autoplay: { delay: 3000,//1秒切换一次 }, }) $(function () { var prcList = $('.prc-img'); var prcInfo = $('.prc-box .info a'); prcList.each(function (index) { $(this).mouseenter(function (obj) { prcInfo.text(prcList[index].getAttribute("data-prcstyle")) }); }) }) }