チュートリアルに従って、JQueryを使用して簡単なドロップダウンメニューを作成しました。リンク: http ://wabism.com/development/jquerydropdown/
そのjQueryコードは次のとおりです。
$('body').ready(function() {
// Add the 'hover' event listener to our drop down class
$('.dropdown').hover(function() {
// When the event is triggered, grab the current element 'this' and
// find it's children '.sub_navigation' and display/hide them
$(this).find('.sub_navigation').slideToggle();
});
});
ドロップダウンは1つのエラーで正常に機能します。メニュー項目を3回または4回すばやくロールオーバーして出力すると、3回または4回のslidetoggle()がすべて実行されます。どうすればこの問題を克服できますか?