如何在jQuery的mouseenter事件中运行代码

如何在jQuery的mouseenter事件中运行代码

在这篇文章中,我们将看到如何使用jQuery在鼠标进入特定区域时运行代码。为了在鼠标进入一个特定的区域时运行代码,mouseenter()方法被使用。mouseenter()方法在鼠标指针移动到选定的元素上时发挥作用。

语法:

$(selector).mouseenter(function)

参数:该方法接受单参数函数,这是可选的。它用于指定调用mouseenter()方法时要运行的函数。

示例:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to run a code on mouseenter
        event in jQuery?
    </title>
  
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
  
    <script>
        (document).ready(function () {
            (".main").mouseenter(function () {
                $(".main").css({
                    background: "green",
                    color: "white"
                });
            });
        });
    </script>
  
    <style>
        body {
            text-align: center;
        }
  
        .main {
            width: 300px;
            height: 200px;
            border: 2px solid black;
        }
    </style>
</head>
  
<body>
    <div class="main">
        <h1>GeeksforGeeks</h1>
  
        <h3>
            How to run a code on mouseenter
            event in jQuery?
        </h3>
    </div>
</body>
  
</html>

输出:

如何在jQuery的mouseenter事件中运行代码?

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程