• jQuery中关于toggle的使用


    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>toggle的使用</title>
    <style>
    div{
    border: 1px solid white;
    500px;
    height: 350px;
    margin: auto;
    text-align: center;
    }
    </style>
    <script type="text/javascript" src="../js/jquery-1.8.3.js" ></script>
    <script>
    $(function(){
    $("#btn").click(function(){
    $("#img1").toggle();
    });
    });
    </script>
    </head>
    <body>
    <div>
    <input type="button" value="显示/隐藏" id="btn" /><br />|
    <img src="../img/lijun.jpg" width="100%" height="100%" id="img1"/>
    </div>
    </body>
    </html>

  • 相关阅读:
    google浏览器切换成中文
    Python 进阶篇
    Linux 命令
    Linux
    Linux
    Linux
    Linux--shell脚本之文本处理工具
    Linux--shell脚本之正则表达式
    Linux
    Linux
  • 原文地址:https://www.cnblogs.com/lijun6/p/10473723.html
Copyright © 2020-2023  润新知