當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery hover()用法及代碼示例


hover()是jQuery中的一種內置方法,用於指定兩個函數,當鼠標指針移到所選元素上時要啟動兩個函數。
用法:

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

選擇器是選定的元素。
參數:它接受下麵指定的兩個參數:

  • Function_in:它指定發生mouse-enter事件時要運行的函數。
  • Function_out:它是可選的,它指定在發生mouse-leave事件時運行的函數。

返回值:它返回帶有選定元素的背景色效果。


jQuery代碼顯示hover()方法的用法方式:

代碼1:

<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>

輸出:
在將鼠標指針移到該段上之前,

將鼠標指針移到該段落上之後,

將鼠標指針從段落中移出後,



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery | hover() with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。