ホームページ >ウェブフロントエンド >jsチュートリアル >ホバーの使い方とlive(マウスホバー効果)の使い方の紹介_jquery
// 製品カタログ<br>$(".lm_div_q dd")。 hover(function( ){ <br>$(this).find("strong").addClass("tj_strong"); <br>$(this).find("strong").next().stop(true ,true). slideDown(200); // ドロップダウン ボックスを表示します <br>}, function(){ <br>$(this).find("strong").removeClass("tj_strong"); $(this).find ("strong").next().stop(true,true).slideUp(200); // ドロップダウン ボックスを非表示<br>});