为什么这一句不行$(".item-1 + next").css('border','1px solid red');
楼上正解
next是方法,放在选择器内不能直接用,要写对应的选择元素,例如$(".item-1 + li")或者$(".item-1").next()