// live主要用於動態載入出來的元素綁定事件
// 產品目錄
$(".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); // 隱藏下拉框
}
});
// hover直接綁定事件
// 產品目錄<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"); <br>$(this).find(" strong").next().stop(true,true).slideUp(200); // 隱藏下拉框<br>});