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


JQuery mouseenter()用法及代码示例


jQuerymouseenter()method 是一种内置方法,当鼠标指针移动到所选元素上时该方法起作用。

用法:

$(selector).mouseenter(function)

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

示例 1:此示例说明了 jQuery 中的mouseenter() 方法。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>The mouseenter Method</title> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
  
    <!-- jQuery code to show the working of this method -->
    <script> 
        $(document).ready(function () { 
            $("p").mouseenter(function () { 
                $("p").css("background-color", "green"); 
            }); 
        }); 
    </script> 
    <style> 
        body { 
            width: 300px; 
            padding: 40px; 
            height: 30px; 
            border: 2px solid green; 
            font-weight: bold; 
            font-size: 20px; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- move over this paragraph and see the change -->
    <p>Welcome to GeeksforGeeks!</p> 
</body> 
  
</html>

输出:

示例 2:在这个例子中,当我们将鼠标移到段落上时,会出现一个弹出窗口。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>The mouseenter Method</title> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
  
    <!-- jQuery code to show the working of this method -->
    <script> 
        $(document).ready(function () { 
            $("p").mouseenter(function () { 
                alert("Mouse moved over this paragragh"); 
            }); 
        }); 
    </script> 
    <style> 
        body { 
            width: 300px; 
            padding: 40px; 
            height: 30px; 
            border: 2px solid green; 
            font-weight: bold; 
            font-size: 20px; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- move over this paragraph and pop-up will come -->
    <p>Welcome to GeeksforGeeks!</p> 
</body> 
  
</html>

输出:

相关文章:



相关用法


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