$(function () { var index = 0; //上一张 $('.btn_left').on('click', function () { btn_left(); }); //下一张 $('.btn_right').on('click', function () { btn_right(); }); //点击上一张的封装函数 function btn_left() { arr.unshift(arr[2]); arr.pop(); $('.cooldog_content li').each(function (i, e) { $(e).removeclass().addclass(arr[i]); }) index--; if (index < 0) { index = maxpage; } show(); } //点击下一张的封装函数 function btn_right() { arr.push(arr[0]); arr.shift(); $('.cooldog_content li').each(function (i, e) { $(e).removeclass().addclass(arr[i]); }) index++; if (index > maxpage) { index = 0; } show(); } //底部按钮高亮 function show() { $('.buttons a').eq(index).addclass('color').siblings().removeclass('color'); } })