我怎麼解除綁定或通過禁用鼠標它正在徘徊出來之後再重新啓用,如果其他框淡出。禁用鼠標懸停事件那麼reanable
我試圖拆散,但目前看來,它不工作,它只是關閉了整個事情。
我甚至嘗試了超時,但不工作到我的優勢。
任何幫助,將不勝感激,謝謝
$("#shopping_basket").mouseover(function() {
// set a timeout so that this event will not trigger twice when mouseover from the bottom
setTimeout(function() {
/*$("#shopping_basket").unbind(mouseover);*/
$("#miniBasketDetails").fadeIn(500);
},500);
});
$("#miniBasketDetails").mouseleave(function() { $("#miniBasketDetails").fadeOut(500); });
非常感謝你的解釋和幫助!這正是我想要做的。 – SmileyWar 2012-08-07 09:14:08
@EmmanuelCorwinFlossie請您點擊我答案旁邊的綠色複選標記以接受它,如果您覺得它有幫助。 – 2012-08-07 14:01:20
我很想,但我的代表處是低:( – SmileyWar 2012-08-07 17:43:28