onmouseenter与onmouseleave事件

onmouseenter 事件在鼠标指针移动到元素上时触发。

onmouseenter 事件在鼠标指针离开元素上时触发。

常用于显示二维码等功能

应用:

<button class="u-btn-sq" onmouseenter="j_OutBox_on('j-bubOpenBox')" onmouseleave="j_close_off('j-bubOpenBox')" type="button">
    <img class="u-ico" src="../../static/portal/images/style/icon_qu.png"/>
</button>
//移动到元素
function j_OutBox_on(im) {
        var obj = "." + im;
        if ($(obj).is(":hidden")) {
            $(obj).show();
        } else {
            $(obj).hide();
        }
    }
//远离
 function j_close_off (it) {
    var obj = "." + it;
    $(obj).hide();
    
    }
 

猜你喜欢

转载自blog.csdn.net/supershuyun/article/details/87186447