鼠标事件界面转换 mouseover() 方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标事件界面转换 mouseover() 方法相关的知识,希望对你有一定的参考价值。


mouseover() 方法


<html>

<head>

<script type="text/javascript" src="/jquery/jquery.js"></script>

<script type="text/javascript">

$(document).ready(function(){

  $("p").mouseover(function(){

    $("p").css("background-color","yellow");

  });

  $("p").mouseout(function(){

    $("p").css("background-color","#E9E9E4");

  });

});

</script>

</head>

<body>

<p style="background-color:#E9E9E4">请把鼠标指针移动到这个段落上。</p>

</body>

</html>


jQuery 效果 - 隐藏和显示

<!DOCTYPE html>

<html>

<head>

<script src="/jquery/jquery-1.11.1.min.js"></script>

<script type="text/javascript">

$(document).ready(function(){

  $("#hide").click(function(){

  $("p").hide();

  });

  $("#show").click(function(){

  $("p").show();

  });

});

</script>

</head>

<body>

<p id="p1">如果点击“隐藏”按钮,我就会消失。</p>

<button id="hide" type="button">隐藏</button>

<button id="show" type="button">显示</button>

</body>

</html>


两个结合之后的代码

$(function() {

$("#tzgg1").addClass(‘title_h2‘);//设置其中一个初始时的效果


});

$(document).ready(function() {

$("#tzgg1").mouseover(function() {

$("#tzgg1").addClass(‘title_h2‘);

$("#gzdt1").removeClass(‘title_h2‘);

$("#tzgg2").show();

$("#gzdt2").hide();

$("#tzgg3").show();

$("#gzdt3").hide();

});技术分享

$("#gzdt1").mouseover(function() {

$("#gzdt1").addClass(‘title_h2‘);

$("#tzgg1").removeClass(‘title_h2‘);

$("#gzdt2").show();

$("#tzgg2").hide();

$("#gzdt3").show();

$("#tzgg3").hide();

});

});

技术分享

本文出自 “砥身砺行” 博客,请务必保留此出处http://82711020.blog.51cto.com/12993840/1966464

以上是关于鼠标事件界面转换 mouseover() 方法的主要内容,如果未能解决你的问题,请参考以下文章

mouseenter 与 mouseover 区别于选择

鼠标事件之鼠标滑过事件MOUSEOVER

mouseover 事件时的鼠标位置

鼠标mouse事件

如何解决鼠标移动到子元素 会触发父元素的mouseout事件

jQuery中的事件与动画