zoukankan      html  css  js  c++  java
  • upTodown

    image     ------->>>  image

    从左图变为有图,并实现将左图上面的信息隐藏。

    <img src="../images/up.gif" border="0" onclick="javascript:DisShowDataMain(this);" id="img4" />

    function DisShowDataMain(imgObj) {
                var obj2 = document.getElementById("queryMain");
                if (obj2.style.display == "none") {
                    obj2.style.display = "block";
                    imgObj.src = "../images/up.gif";
     
                }
                else {
                    obj2.style.display = "none";
                    imgObj.src = "../images/down.gif";
     
                }
            }

  • 相关阅读:
    poj 3662 Telephone Lines
    费马小定理证明
    CodeForces 1058 F Putting Boxes Together 树状数组,带权中位数
    共价大爷游长沙 lct 维护子树信息
    牛客暑假多校 F RIKKA with Line Graph
    牛客暑假多校 H Prefix sum
    HDU-6437 Videos
    模板汇总——AC自动机
    模板汇总——逆元
    模板汇总——LCT
  • 原文地址:https://www.cnblogs.com/kim0zh/p/3383789.html
Copyright © 2011-2022 走看看