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";
     
                }
            }

  • 相关阅读:
    Mathematica查看内部定义
    Mathematica绘制曲面交线方法
    Mathematica新特性Inactive, 求解复杂微分方程
    Mathematica修改默认字体
    Mac系统下lipo, ar, nm等工具的使用简介
    centos8 安装php7.2以及php-fpm
    mysql8.0创建用户只能访问某一个数据库
    CentOS 7 yum安装 RabbitMQ
    Linux服务器PHP+MYSQL环境配置优化提升网站运行效率
    PHP 7.1安装xhprof进行性能分析
  • 原文地址:https://www.cnblogs.com/kim0zh/p/3383789.html
Copyright © 2011-2022 走看看