在JQuery中提供了.hover()事件,以簡化Dom中的mouseenter(滑鼠進入),和mouseleave(滑鼠離開)事件,hover的第一個參數(匿名方法)表示mouseenter,第二個參數表示mouseleave,即表示可以為hover傳遞兩個參數。如下程式碼所示:
<!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="//code.jquery.com/jquery-1.10.2.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(//为li绑定了鼠标进入和鼠标移开的两个参数 function() { $( this ).append( $( "<span> ***</span>" ) ); }, function() { $( this ).find( "span:last" ).remove(); } ); $( "li.fade" ).hover(function() {<pre name="code" class="html" style="color: rgb(51, 51, 51); font-size: 14px; line-height: 26px;">//为li元素下的class类是fade的所有元素绑定了鼠标进入参数 $( this ).fadeOut( 100 ); $( this ).fadeIn( 500 );}); </script> </body> </html>
以上是關於jQuery滑鼠懸停事件.hover()的使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!