zoukankan      html  css  js  c++  java
  • Jquery 中toggle的用法举例

    toggle用法是使得两个以上的方法交替出现。

    <!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">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>toggles demo</title>
        <script src="http://www.codefans.net/ajaxjs/jquery-1.6.2.min.js" 
            type="text/javascript"></script>
        <script>
            $(function () {
                $("#btn").toggle(function () {
                    $(this).next().hide();
                }, function () {
                    $(this).next().show("slow");
                }
                    );
    
                $("div").bind("mouseover mouseout", function () {
                    $(this).toggleClass("over")
                });
            });
        </script>
        <style type="text/css">
            .over {
                background-color:red;
            }
        </style>
    </head>
    <body>
        <div>
            <input id="btn" type="button" name="btn" title="click me" value="点击我" />
            <button id="delAll">删除所有</button>
        </div>
        <div id="test">nihao
    
        </div>
    </body>
    </html>
  • 相关阅读:
    BZOJ3689: 异或之
    BZOJ3166: [Heoi2013]Alo
    BZOJ3261: 最大异或和
    BZOJ3123: [Sdoi2013]森林
    BZOJ4520: [Cqoi2016]K远点对
    BZOJ2989: 数列
    BZOJ1941: [Sdoi2010]Hide and Seek
    BZOJ4066: 简单题
    BZOJ2648: SJY摆棋子
    KDtree模板(HDU4347)
  • 原文地址:https://www.cnblogs.com/qixue/p/3525823.html
Copyright © 2011-2022 走看看