HTML语言中如何实现网页在同一个页面的切换

HTML语言中如何实现网页在同一个页面的切换,第1张

刚弄错了

应该是这样

<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%


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7486105.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-06
下一篇 2023-04-06

发表评论

登录后才能评论

评论列表(0条)

保存