当前位置: 代码迷 >> 网页设计 >> dreamwave表格链接,该怎么处理
  详细解决方案

dreamwave表格链接,该怎么处理

热度:198   发布时间:2012-02-19 19:43:38.0
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>
  相关解决方案