zoukankan      html  css  js  c++  java
  • jQuery层次选择器

     <style type="text/css">         table tr td {         240px;height:240px;         }         .clasImg {           500px;height:200px;         }     </style>     <script src="jquery-1.9.1.js"></script>     <script type="text/javascript">

            $(function () {             $('#Button1').click(function () {               //  $('#img1,#img3,#Button1,#Button2').hide(5000);                 // $('#img1,#img3,#Button1,#Button2').show(5000);

                   // $('img').hide(5000);                 //$('img').show(5000);

                    $('#img2').removeClass();                 $('#img2').addClass('clasImg');                 $('.imgClass').hide(5000);                 $('.imgClass').show(5000);

                })

                $('#Button2').click(function () {                 //$('#img4').css('width', '300');                 //$('#img4').css('height', '300');

                    $('#img1').hide(5000);             })           })     </script>

    </head> < body>     <table >         <tr>             <td>                 <img id="img1" alt="" src="images/1.jpg" class="imgClass" />             </td>             <td>                 <img id="img2" alt="" src="images/1.jpg" class="imgClass" />             </td>         </tr>         <tr>             <td>                 <img id="img3" alt="" src="images/1.jpg" class="imgClass" />             </td>             <td>                 <img id="img4" alt="" src="images/1.jpg" class="imgClass" />             </td>         </tr>

        </table>

        <input id="Button1" type="button" value="收缩" />     <input id="Button2" type="button" value="改变大小" />     <input id="Button3" type="button" value="改变DIV" /> < /body> < /html>

  • 相关阅读:
    [ZJOI2008]树的统计 树链剖分
    CF915E 动态开线段树
    Poj 2114 Boatherds(点分治)
    Poj 2599 Godfather(树的重心)
    Bzoj 2152: 聪聪可可(点分治)
    Cogs 1714. [POJ1741][男人八题]树上的点对(点分治)
    Cogs 329. K- 联赛(最大流)
    Cogs 731. [网络流24题] 最长递增子序列(最大流)
    Bzoj 2282: [Sdoi2011]消防(二分答案)
    Cogs 732. [网络流24题] 试题库(二分图)
  • 原文地址:https://www.cnblogs.com/qiqiBoKe/p/3028514.html
Copyright © 2011-2022 走看看