为什么这段代码在浏览器中不能显示?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>心电监护管理</title>
</head>
<script type="text/javascript">
window.moveTo(0,0);
window.resizeTo(screen.width , screen.height );
</script>
<frameset name=topwin rows="20,*" frameborder="0" bordercolor=#CCFFCC border=0>
<frame name="top" src="./electrictop.jsp" scrolling= no marginwidth="0" marginheight="0">
<frameset name=mainwin cols="130,15,*" frameborder="0" border= 0 >
<frame name="left" src="./menu.jsp" scrolling=no marginwidth="0" marginheight="0">
<frame name="middle" src="./middle.jsp" noResize scrolling=no>
<frameset name=rightwin rows="*,15,400" frameborder="0" border=0 >
<frame name="display" src="" scrolling=auto marginwidth="0" marginheight="0" >
<frame name="hmiddle" src="./hmiddle.jsp" noResize scrolling=no >
<frame name="bottom" src="" scrolling=auto marginwidth="0" marginheight="0" >
</frameset>
</frameset>
</frameset>
<noframeset>
<body>
你的浏览器不支持框架
</body>
</noframeset>
</html>
问题点数:20、回复次数:2Top
1 楼loveyt(咆哮的独角兽^大家都在长大)回复于 2006-07-03 13:46:40 得分 0
其实是显示出来了,但是你的frameborder=0,所以看上去就像一个白的页面。实际上这是个框架页面。Top
2 楼hyc_hover(h_hover)回复于 2006-07-03 14:06:19 得分 0
哦 谢谢
那应该怎么才能显示出来的不是空白了?
但是在另外一个机子上运行他又显示出信息的了啊,这又怎么回事呢?Top




