这是我的代码
$(function () { $('legend').click(function () { $(this).parent().find('.content').slideToggle("slow"); }); });
:not
:animated
$(function () { $('legend').click(function () { $(this).parent().find('.content:not(:animated)').slideToggle('slow'); }); });
工作示例:http://jsfiddle.net/andrewwhitaker/acKtG/