当前位置: 首页 > 文档资料 > jQuery 入门教程 >

hover(over, out )

优质
小牛编辑
125浏览
2023-12-01

描述 (Description)

hover( over, out )方法模拟悬停(将鼠标移开和关闭,对象)。 这是一种自定义方法,可为频繁的任务提供“输入”。

语法 (Syntax)

以下是使用此方法的简单语法 -

<i>selector</i>.hover( over, out )

参数 (Parameters)

以下是此方法使用的所有参数的说明 -

  • over - 当鼠标移动到匹配元素上时触发的回调函数。

  • out - 当鼠标移出匹配元素时触发的回调函数。

例子 (Example)

以下是一个简单的例子,简单地显示了这种方法的用法 -

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
            $('div').hover(
               function () {
                  $(this).css({"background-color":"red"});
               }, 
               function () {
                  $(this).css({"background-color":"blue"});
               }
            );
         });
      </script>
      <style>
         .div{ margin:10px;padding:12px; border:2px solid #666; width:60px;}
      </style>
   </head>
   <body>
      <p>Move mouse on any square below to see the result:</p>
      <div class = "div" style = "background-color:blue;"></div>
      <div class = "div" style = "background-color:blue;"></div>
      <div class = "div" style = "background-color:blue;"></div>
   </body>
</html>