$(function() { hovershowpic() showlaypage() }) // 产品图的hover动画效果 function hovershowpic() { $('.product-list li').hover( function() { $(this).children('a').children('.product-img-box').children('.cover-pic').fadein('fast') }, function() { $(this).children('a').children('.product-img-box').children('.cover-pic').fadeout('fast') } ) } // 执行laypage实例 function showlaypage() { layui.use('laypage', function() { var laypage = layui.laypage; var elems = $('.pagination') $.each(elems, function(i, item) { laypage.render({ elem: 'productpagination' + i, //id不用加#号 count: 81, limit: 6, theme: '#007bed' }); }) }) }