// live は主に、動的に読み込まれるイベントをバインドするために使用されます。 elements
// 製品カタログ
$(".lm_div_q dd").live({
mouseenter: function() {
$(this).find("strong").addClass(" tj_strong ");
$(this).find("strong").next().slideDown(200); // ドロップダウン ボックスを表示
},
mouseleave: function() {
$ (this).find("strong").removeClass("tj_strong");
$(this).find("strong").next().slideUp(200); // ドロップを非表示にする-down box
}
});
//ホバーはイベントを直接バインドします
// 製品カタログ<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>});