• jQuery的hover()方法(笔记)


    因为mouseover和mouseout经常一起写,所以出现了hover()

    hover(function(){},function(){});第一个参数为鼠标移入运行的函数,第二个为鼠标离开运行的函数

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <style type="text/css">
    #demo{200px; height:300px;background-color: green;}

    </style>
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript">
    $(function() {
    // $("#demo").mouseover(function(){
    // $(this).css({"width":"400px","height":"600px","background-color":"yellow"});
    // });
    // $("#demo").mouseout(function(){
    // $(this).css({"width":"200px","height":"300px","background-color":"green"});
    // });
    $("#demo").hover(function() {
    $(this).css({"width":"400px","height":"600px","background-color":"yellow"});
    }, function() {
    $(this).css({"width":"200px","height":"300px","background-color":"green"});
    });
    });

    //也可以使用简化的hover

    /*一般用这个比较多,鼠标进入离开都执行这个函数。

      $("ul").hover(function(){
      $(".lei").toggle();
      });

    */

    </script>
    </head>
    <body>
    <div id="demo"></div>

    </body>
    </html>

  • 相关阅读:
    Windows自动更新所需要连接的网站列表
    DFX 9.303 for QQMusic 2010
    在VPC 2007 SP1中安装Ubuntu 10.04 desktop (完成)
    穷人把钱存入银行,实际上是补贴富人。
    清理Windows右下角图标
    阿里镜像pull 加速器
    k8s 安装flannel网络插件
    k8s pull.sh
    kubeadm1.10.00 安装k8s集群
    虚拟机vmware centos7 扩展磁盘空间
  • 原文地址:https://www.cnblogs.com/SmallNiu/p/4178331.html
Copyright © 2020-2023  润新知