jQuery移入移出事件

本文详细介绍了jQuery中的移入移出事件,包括mouseover和mouseout的事件捕获问题,mouseenter和mouseleave避免事件捕获的特性,以及hover函数的使用方式。通过示例代码解析了在父子元素交互中的不同行为。
摘要由CSDN通过智能技术生成

jQuery移入移出事件

mouseover和mouseout


以下程序一个父div中有一个子div,移入父div打印“father移入”,移出父div打印“father移出”

<script>
    $(function()
    {
        //mouseover
        $(".father").on("mouseover",function()
        {
            console.log("father移入");
        })

        //mouseout
        $(".father").on("mouseout",function()
        {
            console.log("father移出");
        })
   }
   </script>
   <style>
    .father{
        width: 200px;
        height: 200px;
        background-color: brown;
    }
    .son{
        width: 100px;
        height: 100px;
        background-color:cadetblue;
    }
    .father1{
        margin: 10px;
        width: 200px;
        height: 200px;
        background-color: brown;
    }
    .son1{
        width: 100px;
        height: 100px;
        background-color:cadetblue;
    }
</style>
	<body>
	    <div class="father">
	        <div class="son"></div>
	    </div>
	    <div class="father1">
	        <div class="son1"></div>
	    </div>
	</body>     

注意! 使用mouseover和mouseout时,只给父级添加这两个事件,移入子级会发生事件捕获,子级会先触发mouseout然后再触发mouseover,此时控制台会打印“father移出”和“father移入”


mouseenter和mouseleave


以下程序一个父div中有一个子div,移入父div打印“father移入”,移出父div打印“father移出”

<script>
    $(function()
    {
      //mouseenter
        $(".father1").on("mouseenter",function()
        {
            console.log("father移入1");
        })
        //mouseleave
        $(".father1").on("mouseleave",function()
        {
            console.log("father移出1");
        })
   }
   </script>
   <style>
    .father{
        width: 200px;
        height: 200px;
        background-color: brown;
    }
    .son{
        width: 100px;
        height: 100px;
        background-color:cadetblue;
    }
    .father1{
        margin: 10px;
        width: 200px;
        height: 200px;
        background-color: brown;
    }
    .son1{
        width: 100px;
        height: 100px;
        background-color:cadetblue;
    }
</style>
	<body>
	    <div class="father">
	        <div class="son"></div>
	    </div>
	    <div class="father1">
	        <div class="son1"></div>
	    </div>
	</body>     

!注意这里不会触发事件捕获,移入子div时控制台不会打印“father移出”和“father移入”


hover

  • hover(移入函数,移出函数)
  • hover(移入移出函数)
  • hover和enter、leave一样,不会触发事件捕获
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值