var t = 0;
var _id;
function categoryCarousel (t){
$(".title li").eq(t).stop().addClass('cur').siblings().removeClass('cur'),
_id = $(".title li").eq(t).attr('id');
var showUl = $("#" + _id + "list ");
showUl.stop().show().siblings("ul").hide();
$("#" + _id + "list .line").show();
}
$(document).on('click', '#next', function () {
if (t > 3 ) {
t = -1;
};
categoryCarousel (++t);
console.log(t)
});
$(document).on('click', '#pre', function () {
if (t < 0) {
t = 3;
};
categoryCarousel (--t)
console.log(t)
});

应该是
t=3
和t=0
的时候不符合if
判断,然后执行了++t(t=4)
和--t(t=-1)
导致的。你看根据你的业务逻辑改为
if(t>=3)
;if(t<=0);
还是额外加一些语句比较好。