当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery hover()用法及代码示例


jQuery hover()是一个内置方法,用于指定当鼠标指针移到所选元素上时启动的两个函数。

用法:

$(selector).hover(Function_in, Function_out);

这里的selector就是被选择的元素。

参数:它接受下面指定的两个参数 -

  • Function_in:它指定当 mouse-enter 事件发生时要运行的函数。
  • Function_out:它是可选的,指定 mouse-leave 事件发生时要运行的函数。

示例 1:显示 hover() 方法工作原理的 jQuery 代码。

HTML


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <script>
        //jQuery code to show the working of hover() method
        $(document).ready(function () {
            $("p").hover(function () {
                $(this).css("background-color", "green");
            }, function () {
                $(this).css("background-color", "yellow");
            });
        });
    </script>
    <style>
        p {
            width: 55%;
            height: 80px;
            padding: 20px;
            margin: 10px;
            border: 2px solid green;
            font-size: 50px;
        }
    </style>
</head>
<body>
    <!--move the mouse in and out over this paragraph
        and background color will change-->
    <p>GeeksforGeeks !</p>
</body>
</html>

输出:

示例 2:在此示例中,我们将通过将鼠标悬停在内部和外部来更改字体大小。

HTML


<!DOCTYPE html>
<html>
<head>
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
    </script>
    <script>
        // jQuery code to show the working of hover() method
            $(document).ready(function () {
                $("p").hover(function () {
                    $(this).animate({ fontSize: "+=14px" });
                }, function () {
                    $(this).animate({ fontSize: "-=14px" });
                });
            });
    </script>
    <style>
        p {
            width: 55%;
            height: 80px;
            padding: 20px;
            margin: 10px;
            border: 2px solid black;
            font-size: 50px;
            background-color: rgb(22, 153, 22);
        }
    </style>
</head>
<body>
    <!--move the mouse in and out over this paragraph
        and font-size will change-->
    <p>GeeksforGeeks !</p>
</body>
</html>

输出:



相关用法


注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery hover() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。