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


JQuery .hover()用法及代碼示例


將一個或兩個處理程序綁定到匹配的元素,當鼠標指針進入和離開元素時執行。

用法一

.hover( handlerIn, handlerOut ) => jQuery

說明:將兩個處理程序綁定到匹配的元素,在鼠標指針進入和離開元素時執行。

  • 添加的版本:1.0.hover( handlerIn, handlerOut )

    • handlerIn
      類型:Function(Event eventObject)
      當鼠標指針進入元素時執行的函數。
    • handlerOut
      類型:Function(Event eventObject)
      當鼠標指針離開元素時執行的函數。

.hover() 方法為 mouseentermouseleave 事件綁定處理程序。您可以使用它在鼠標位於元素內時簡單地將行為應用於元素。

調用 $( selector ).hover( handlerIn, handlerOut ) 是以下的簡寫:

$( selector ).mouseenter( handlerIn ).mouseleave( handlerOut );

有關更多詳細信息,請參閱.mouseenter().mouseleave() 的討論。

例子:

要為懸停的項目添加特殊樣式,請嘗試:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>hover demo</title>
  <style>
  ul {
    margin-left: 20px;
    color: blue;
  }
  li {
    cursor: default;
  }
  span {
    color: red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<ul>
  <li>Milk</li>
  <li>Bread</li>
  <li class="fade">Chips</li>
  <li class="fade">Socks</li>
</ul>
 
<script>
$( "li" ).hover(
  function() {
    $( this ).append( $( "<span> ***</span>" ) );
  }, function() {
    $( this ).find( "span" ).last().remove();
  }
);
 
$( "li.fade" ).hover(function() {
  $( this ).fadeOut( 100 );
  $( this ).fadeIn( 500 );
});
</script>
 
</body>
</html>

演示:

要為懸停的表格單元格添加特殊樣式,請嘗試:

$( "td" ).hover(
  function() {
    $( this ).addClass( "hover" );
  }, function() {
    $( this ).removeClass( "hover" );
  }
);

要取消綁定上麵的示例,請使用:

$( "td" ).off( "mouseenter mouseleave" );

用法二

.hover( handlerInOut ) => jQuery

說明:將單個處理程序綁定到匹配的元素,當鼠標指針進入或離開元素時執行。

  • 添加的版本:1.4.hover( handlerInOut )

    • handlerInOut
      類型:Function(Event eventObject)
      當鼠標指針進入或離開元素時執行的函數。

.hover() 方法在傳遞單個函數時,將為 mouseentermouseleave 事件執行該處理程序。這允許用戶在處理程序中使用 jQuery 的各種切換方法,或者根據 event.type 在處理程序中做出不同的響應。

調用 $(selector).hover(handlerInOut) 是以下的簡寫:

$( selector ).on( "mouseenter mouseleave", handlerInOut );

有關更多詳細信息,請參閱.mouseenter().mouseleave() 的討論。

例子:

在懸停時向上或向下滑動下一個兄弟 LI,並切換一個類。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>hover demo</title>
  <style>
  ul {
    margin-left: 20px;
    color: blue;
  }
  li {
    cursor: default;
  }
  li.active {
    background: black;
    color: white;
  }
  span {
    color:red;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<ul>
  <li>Milk</li>
  <li>White</li>
  <li>Carrots</li>
  <li>Orange</li>
  <li>Broccoli</li>
  <li>Green</li>
</ul>
 
<script>
$( "li" )
  .odd()
    .hide()
  .end()
  .even()
    .hover(function() {
      $( this )
        .toggleClass( "active" )
        .next()
          .stop( true, true )
          .slideToggle();
    });
</script>
 
</body>
</html>

演示:

相關用法


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