我尝试了这个解决方案:
What is the cleanest way to disable CSS transition effects temporarily?
但它不起作用。我仍然看到动画的东西。
$('body').addClass('notransition'); // the class that doesn't work
$('body')[0].offsetHeight;
$('#main_style').attr('href', newStyleUrl);
$('body').removeClass('notransition');
有没有办法让它发挥作用?