一般通过分页的方式,也可用IFRAME来做;

解决方案 »

  1.   

    加一个DIV 在里面写TABLE,DIV中style="overflow:scroll"
      

  2.   

    <html><head>
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title></title>
    </head>
    <body>
    <div style="overflow:auto;height:80">
     <table border="1" width="100%" cellpadding="0" cellspacing="0">
      <tr>
         <td width="3%">0</td>
         <td width="7%">0</td>
      </tr>
        <tr>
         <td width="3%">1</td>
         <td width="7%">2</td>
      </tr>
        <tr>
         <td width="3%">3</td>
         <td width="7%">4</td>
      </tr>
        <tr>
         <td width="3%">5</td>
         <td width="7%">6</td>
      </tr>
        <tr>
         <td width="3%">7</td>
         <td width="7%">8</td>
      </tr>
      </table>
      </div>
    </body>
    </html>