next()相邻下一个同级元素

prev()相邻上一个同级元素

siblings()所有同级元素

$("#id").next();
$("#id").prev();
$("#id").siblings();
04-10 17:12