下面的代碼工作,但是,鼠標輸入產生閃爍的mouseenter休假導致閃爍jQuery中
$("#helptext").bind("mouseenter",function(){
$("p:first",this).text("helptext.");
}).bind("mouseleave",function(){
$("p:first",this).text("");
});
下面的代碼不起作用
/*
$("helptext").mouseout(function(){
$("p:first",this).text("sdlfksdlfjskldjl");
}).mouseover(function(){
$("p:first",this).text("mouse over");
});*/
我想消除閃爍或取得第二個代碼加工。
爲HTML以上
<div id="helptext"><img alt="Help Text" src="/static/help.png"></img><p></p></div>
非常可愛的圖片;-)和演示網站thanx,非常友善。它適用於你,因爲幫助文本的長度小於div寬度。它對我來說是閃爍的,因爲文本的長度更多。請檢查並讓我知道我的假設是否正確。 – dhaval 2009-11-24 16:55:37
檢查新的鏈接。仍然不閃爍爲我。 – jitter 2009-11-24 18:02:32