应该是这样
<frameset name="frameTop" rows="80,*" framespacing="0" border="0" frameborder="0">
<frame name="banner" scrolling="no" noresize target="contents" src="title.jsp">
<frameset cols="180,*">
<frame name="contents" id="contents" target="main" src="menu.jsp" scrolling="auto" noresize>
<frame name="main" src="student/select/curriculumSchedule.jsp" scrolling="auto" noresize target="_self">
</frameset>
定义右边的name为 main 然后再左边指定 target="main"
<html><frameset cols="25%,50%,25%">
<frame src="/example/html/frame_a.html">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>
</html>
上面的代码是将网页分成垂直的3部分,大小依次是25%,50%,25%
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)