• mouseent和mouseover的区别


    使用mouseover会产生冒泡事件结合onmouseout一起使用

    控制台里面的小盒子也会触发大盒子的事件这叫冒泡事件,所以使用mouseover会产生冒泡事件

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            #box1{
                 300px;
                height: 300px;
                background-color: brown;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translateY(-50%) translateX(-50%);
            }
            #box2{
                 100px;
                height: 100px;
                background-color: blueviolet;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translateY(-50%) translateX(-50%);
            }
        </style>
    </head>
    <body>
        <div id="box1">
            <div id="box2"></div>  
        </div>
        <script>
            box1.addEventListener("mouseover",function(){
                console.log("被触发");   
            });
        </script>
    </body>
    </html>

    mouseent鼠标经过事件不会产生冒泡事件搭配mouseleave鼠标离开事件使用

    鼠标经过小盒子时不会被触发

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            #box1{
                 300px;
                height: 300px;
                background-color: brown;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translateY(-50%) translateX(-50%);
            }
            #box2{
                 100px;
                height: 100px;
                background-color: blueviolet;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translateY(-50%) translateX(-50%);
            }
        </style>
    </head>
    <body>
        <div id="box1">
            <div id="box2"></div>  
        </div>
        <script>
            box1.addEventListener("mouseenter",function(){
                console.log("被触发");   
            });
        </script>
    </body>
    </html>
  • 相关阅读:
    LPTSTR、LPCSTR、LPCTSTR、LPSTR的意义
    字符,字节和编码
    堆和栈的区别
    js正则表达式限制文本框只能输入数字,小数点,英文字母
    WPF 中的 LinkButton
    WPF中DataGrid的应用
    C#获取web.config配置文件内容
    js中格式化时间字符串
    WPF中的用户控件(UserControl)
    VS2010安装其他版本framework的问题解决方案
  • 原文地址:https://www.cnblogs.com/niuyaomin/p/12687120.html
Copyright © 2020-2023  润新知