2012-04-25 4 views
0

を残し、これは、マウスホバー、マウスがホバーテントプラグインが入ると、マウスは私がホバーインデントプラグインを使用しています

CODE1を残す結合するだけの機能を持っている:

$("#tab").hoverIntent({ 
over: show, 
timeout: 20, 
out: hide 
}); 
function show(){ 
$(".part").show(); 
} 
function hide(){ 
$(".part").hide(); 
} 

は、マウス休暇関数を書く必要があります.partのためので、この

CODE2のように作られた:

$("#tab").hoverIntent({ 
over: show, 
timeout: 20, 
out: hide 
}); 
function show(){ 
$(".part").show(); 
} 
$(".part").hoverIntent({ 
over: show, 
timeout: 20, 
out: hide 
}); 
function hide(){ 
$(".part").show(); 
}  

が、それはエラーと思われる...これを修正する方法? hoverintent()に両show()ehide()の機能が使用されているので、

答えて

0

あなたは別の関数名を使用する必要があります。この

$("#tab").hoverIntent({ 
    over: show, 
    timeout: 20, 
    out: hide 
}); 
function show(){ 
    $(".part").show(); 
} 
function hide(){ 
} 

$(".part").hoverIntent({ 
    over: show1, 
    timeout: 20, 
    out: hide1 
}); 
function show1(){ 
} 
function hide1(){ 
    $(".part").hide(); 
} 

のように空を行い、それぞれのショーを()という関数を任意の関数を削除することはできません、非表示()、show1()、hide1()このようにしよう...

関連する問題