鼠标移入div1显示div2,鼠标移出div1或者2隐藏div2(下拉框显示与隐藏)

鼠标移入div1显示div2,鼠标移出div1或者2隐藏div2(下拉框显示与隐藏)_第1张图片

js:

var timer=null;
$(".delete_d").mouseover(function(){
    clearTimeout(timer);
    $('#checkedLevel').show();
}).mouseout(function(){
    timer=setTimeout(function(){
        $('#checkedLevel').hide();
    },100)
});

$("#checkedLevel").mouseover(function(){
    clearTimeout(timer);
    $('#checkedLevel').show();
}).mouseout(function(){
    timer=setTimeout(function(){
        $('#checkedLevel').hide();
    },100)
});

你可能感兴趣的:(前端)