zoukankan      html  css  js  c++  java
  • html页面,左边点击链接,右边显示内容参考代码。

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled Document</title>
    <script type="text/javascript">
       function funcShow(id){
        for(var i=0;i<5;i++){
         var divInfo =document.getElementById('div'+(i+1));
         divInfo.style.display='none';
        }
        var div =document.getElementById('div'+id);
         div.style.display='block';
       }
    </script>
    </head>
    <body>
    <table width="632" border="1">
            <tr>
            <td width="66"><a href="javascript:funcShow(1)">1        </a></td>
            <td width="550" colspan="4" rowspan="5">
            <div id="div1" style="display:block">此处显示id "div1" 的内容aaaaaaaaaaa</div>         
            <div id="div2" style="display:none">此处d "div2" 的内容</div>
            <div id="div3" style="display:none">此处显示id "di 容</div>
            <div id="div4" style="display:none">此处显ccccccccccv4" 的内容</div>
            <div id="div5" style="display:none">此处显示 bbbbbbbbbbb" 的内容</div></td>
            </tr>
            <tr>
            <td><a href="javascript:funcShow(2)">2        </a></td>
            </tr>
            <tr>
            <td><a href="javascript:funcShow(3)">3        </a></td>
            </tr>
            <tr>
            <td><a href="javascript:funcShow(4)">4        </a></td>
            </tr>
             <tr>
            <td><a href="javascript:funcShow(5)">5        </a></td>
            </tr>
    </table>

    </body>
    </html>

  • 相关阅读:
    面向对象的三个基本特征
    OGRE启动过程详解(OGRE HelloWorld程序原理解析)
    Bullet核心类介绍(Bullet 2.82 HelloWorld程序及其详解,附程序代码)
    windows下Bullet 2.82编译安装(Bullet Physics开发环境配置)
    1303: Decimal
    分组背包,每组最多选1个
    椒盐效果
    自我介绍
    题目1539:师弟
    upper_bound()
  • 原文地址:https://www.cnblogs.com/275147378abc/p/5451338.html
Copyright © 2011-2022 走看看