可以通过小圆点将方法串联起来:
$(this).addClass("highLight").next().show().parent().siblings().children("a").removeClass("highLight").next().hide();
也可以这样写,以便更清楚的阅读:
$(this).addClass("highLight") .next().show() .parent().siblings().children("a").removeClass("highLight") .next().hide();