你想要什么效果
你可以用
<table border=0 >
<tr>
<td><iframe src='hh.html' frameborder=0 ></iframe></td>
</tr>
</table>

解决方案 »

  1.   

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
    <title>iframe</title>
    <meta name="vs_defaultClientScript" content="JavaScript">
    <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
    <meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
    <meta name="ProgId" content="VisualStudio.HTML">
    <meta name="Originator" content="Microsoft Visual Studio.NET 7.0">
    </head>
    <body MS_POSITIONING="GridLayout">
    <table border=1 ID="Table1">
    <tr>
    <td><iframe src='new.htm' frameborder=0 width=100% height=100%></iframe></td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    </table>
    </body>
    </html>
      

  2.   

    <table border=0 >
      <tr>
       <td>
         <iframe name="iframe_name" border="0" marginheight="0" marginwidth="0" frameborder="0" scrolling="no/yes/auto" width="123" height="321" src="some_htmlPage_URL"></iframe>
       </td>
      </tr>
    </table>
      

  3.   

    IFRAME固然可以,但要说到嵌入HTML(而不是一个文件),那么用下载行为法是最合要求的!
    <td id=showImport></td>
    <IE:Download ID="oDownload" STYLE="behavior:url(#default#download)" />
    <script>
    function onDownloadDone(downDate){
    showImport.innerHTML=downDate
    }
    oDownload.startDownload('import.htm',onDownloadDone)
    </script>
    呵呵,还有其它办法,都是阿信教我的.(我本来也只知道SSI和IFRAME.)
    看看这个帖子:
    http://expert.csdn.net/Expert/topic/1504/1504620.xml?temp=.4089472
      

  4.   

    <td>
    <iframe src="filename.htm">
    </iframe>
    </td>