日期:2014-05-17  浏览次数:20621 次

网页多框架显示不出。
我在TXT文档里面试着写的,放到IE上,最后“<frame src='http://www.h5po.com'>
”效果显示不出。
<html>
<head>
<title>我要把你撕成几份好呢</title>
</head>
<frameset cols='10%,90%'>
<frame frameborder='no' scrolling='yes' name='a1' src='http://www.163.com'>
<frameset rows='40%,60%'>
<frame frameborder='yes' scrolling='auto' src='http://www.baidu.com'>
<frame src='http://www.h5po.com'>
</frameset>
</frameset>
</html>

但是这样 3个框架都可以显示。
<html>
<head>
<title>我要把你撕成几份好呢</title>
</head>
<frameset cols='10%,60%,30%'>
<frame frameborder='no' scrolling='yes' name='a1' src='http://www.163.com'>
<frameset rows='40%,60%'>
<frame frameborder='yes' scrolling='auto' src='http://www.baidu.com'>
<frame src='http://www.h5po.com'>
</frameset>
</frameset>
</html>

哪里出问题了?

------解决方案--------------------
<frameset rows='40%,30% ,30%'>这样的就能显示出来。。