无涯教程-jQuery - hover( over, out )方法函数

41 阅读1分钟

hover(over,out)方法模拟了悬停(将鼠标移至和移出对象)。

hover( over, out ) - 语法

selector.hover( over, out )

这是此方法使用的所有参数的描述-

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

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

hover( over, out ) - 示例

以下是一个简单的示例,简单说明了此方法的用法-

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

这将产生以下输出-

参考链接

www.learnfk.com/jquery/even…