jQuery hover() 方法

实例

当鼠标指针悬停在 <p> 元素上时,更改该元素的背景色:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("p").hover(function(){
  8. $(this).css("background-color", "yellow");
  9. }, function(){
  10. $(this).css("background-color", "pink");
  11. });
  12. });
  13. </script>
  14. </head>
  15. <body>
  16. <p>将鼠标指针悬停在该段落上。</p>
  17. </body>
  18. </html>

定义与用法

hover() 方法指定鼠标指针悬停在选定元素上时要运行的两个函数。

该方法会触发 mouseentermouseleave 事件。

注意:如果只指定了一个函数,它将对 mouseenter 和 mouseleave 事件运行。

语法

  1. $(selector).hover(inFunction,outFunction)
参数描述
inFunction必填。指定发生 mouseenter 事件时要运行的函数
outFunction可选。指定 mouseleave 事件发生时要运行的函数

分类导航