. 代碼如下:
// 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直接綁定事件<PRE class=javascript name="code">// 產品目錄
$(".lm_div_q dd").hover(function(){
$(this).find("strong").addClass("tj_strong");
$(this).find("strong").next().stop(true,true).slideDown(200); // 顯示下拉框
},function(){
$(this).find("strong").removeClass("tj_strong");
$(this).find("strong").next().stop(true,true).slideUp(200); // 隱藏下拉框
});</PRE><BR>
<BR>
<PRE></PRE>
<BR>
<BR>