jQuery 中的 hover( over, out )方法函

首页 / jQuery入门教程 / jQuery 中的 hover( over, out )方法函

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

hover( over, out ) - 语法

selector.hover( over, out )

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

链接:https://www.learnfk.comhttps://www.learnfk.com/jquery/events-hover.html

来源:LearnFk无涯教程网

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

这将产生以下输出-

无涯教程网

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

程序员进阶攻略 -〔胡峰〕

重学前端 -〔程劭非(winter)〕

Swift核心技术与实战 -〔张杰〕

现代C++编程实战 -〔吴咏炜〕

职场求生攻略 -〔臧萌〕

Vim 实用技巧必知必会 -〔吴咏炜〕

成为AI产品经理 -〔刘海丰〕

Spark性能调优实战 -〔吴磊〕

性能优化高手课 -〔尉刚强〕

好记忆不如烂笔头。留下您的足迹吧 :)