0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js" type="text/javascript"></script>
</head>
<body>
    <div id="popupContact"  style="position:absolute;left:100px;top:100px;width:100px;height:50px;background-color:orange;border:1px solid red ;">
    </div>
    <div id="divtoshow" style="display:none;background-color:green; border:1px solid black;width:200px;height:100px;position:absolute;">
    dsfdssd <div><a href="#">rahul</a></div>
    </div>
</body>
</html>
<script  type='text/javascript'>
$(document).ready(function(){
    var popup_pos=$('#popupContact').offset();
    var timer;
     $("#popupContact").mouseover(function() {
        if(timer) {
            clearTimeout(timer);
            timer = null
           }
        timer = setTimeout(function() {
            if(!$("#VersionSelectField").is(':hidden')){
                $("#divtoshow").css('position',"absolute"); 
                $("#divtoshow").css('top',popup_pos.top-20);    
                $("#divtoshow").css('left',popup_pos.left-20);  
                $("#divtoshow").show();
                 $("#popupContact").hide();
            }

        }, 1000);

    });

     $("#divtoshow").mouseleave(function() {
            if(timer) {
                clearTimeout(timer);
                timer = null
               }
            timer = setTimeout(function() {
                $("#divtoshow").hide();
                 $("#popupContact").show();

            }, 500);
    });
});
</script>

嗨,我有以下代码,当我将鼠标悬停在 popupcontact div 上并突然将鼠标移出 div 时,也会显示 divtoshow div,但我不希望这样,请帮忙......

问:当我突然鼠标移出popupcontact div时,如何不显示divtoshow div?
我想要延迟

4

2 回答 2

1

关于什么

$("#popupContact").mouseout(function() {  
    $("#divtoshow").hide();
    $("#popupContact").show();
});

?

于 2010-09-28T12:24:55.427 回答
0

在 mouseleave() 中的 setTimeOut() 中将 500 更改为 0

于 2010-09-28T12:07:59.780 回答