dreamwave表格链接
如何在网页里布局,然后在左边单元格创建链接对象,内容显示在右边单元格?
------解决方案--------------------要实现这种效果,一般用框架; 
 如果用表格的话,就要用插入框架式; 
 以下代码简写为:   
  <table>  
  <tr>  
     <td>  
      <a href= "aa.html " target= "rightframe "> 点击我aa.html在右边显示 </a>  
     </td>  
     <td>  
    <iframe id= "rightframe " name= "rightframe " frameborder= "no " scrolling= "no " src= "bb.html " width= "500 " height= "500 ">  </iframe>  
     </td>  
  </tr>  
  </table>