解决方法
标准做法是在各自的路径挂钩中设置body类:
Router.map(function() { this.route('someRoute',{ path: '/someAddress',onBeforeAction: function() { $('body').addClass('someRouteBodyClass'); this.next(); },onStop: function() { $('body').removeClass('someRouteBodyClass'); },... }; });