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


JQuery mouseout()用法及代码示例


mouseout()方法是jQuery中的内置方法,当鼠标指针从选定元素移出时使用。
用法:

$(selector).mouseout(function)

参数:该方法接受可选的单参数函数。此参数用于指定调用mouseout事件时要运行的函数。

返回值:此方法返回具有更改的所选元素。


下面的示例说明了jQuery中的mouseout()方法:

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>The mouseover 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").mouseover(function() { 
                    $("p").css("background-color", "lightgreen"); 
                }); 
                $("p").mouseout(function() { 
                    $("p").css("background-color", "lightgray"); 
                }); 
            }); 
        </script> 
        <style> 
            body { 
                width: 420px; 
                padding: 40px; 
                height: 30px; 
                border: 2px solid green; 
                font-weight: bold; 
                font-size: 20px; 
            } 
        </style> 
    </head> 
    <body> 
        <!-- move over this text to see the change -->
        <p>Move the mouse pointer over this paragraph.</p> 
    </body> 
</html>

输出:
将鼠标悬停在以下段落上:

鼠标从段落中移出:



相关用法


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