我想延遲添加到鼠標移出功能約1000毫秒 感謝添加延遲鼠標進行功能的CSS下拉菜單
$('#cart .arrow').live('mouseover', function() {
$('#cart').addClass('active');
$('#cart').load('index.php?route=module/cart #cart > *');
$('#cart > .content').slideToggle('fast');
$('#cart').live('mouseleave', function() {
$(this).removeClass('active');
}
});
擊敗我2秒! – ggdx 2015-03-31 10:05:24