2012年3月6日

jQuery 不斷重複動作

原來

$('xx').fadeIn(xxx);

改成

$('xx').stop(true, true).fadeIn(xxx);

-- 感謝酷皮網架構師 Up Chen 提供