我可以在桌子中放两个框架吗?我不能使用iframe。有没有办法在表格中使用框架。请帮我。我使用的代码如下所示
<frameset cols="100%,0" frameBorder="no" framespacing="0" border="0">
<frame name="leftDualPane" scrolling="no"
src="<%=(String)session.getAttribute("tabViewJsp")%>"
frameborder="1" style="border-left-width: 0px; border-top-width: 0px;
border-bottom-width: 0px; border-right-width: 0px;">
</frame>
<frame name="rightDualPane" scrolling="no"
src="<%=(String)session.getAttribute("tabViewJsp")%>"
frameborder="7" style="border-left-width: 0px; border-top-width: 0px;
border-bottom-width: 0px; border-right-width: 0px;">
</frame>
</frameset>
答案 0 :(得分:0)
不,帧基本上是body标签的替代品,请参阅顶部的示例:http://www.w3.org/TR/html4/present/frames.html
您的问题的解决方案可能是进行Ajax调用,然后将内容插入表格的单元格中。