帮忙写一个html 框架代码 分为四个框。有嵌套。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了帮忙写一个html 框架代码 分为四个框。有嵌套。相关的知识,希望对你有一定的参考价值。

立刻给分。
我还有一个问题,就是如何是我在主菜单项里 选择一项,然后我的框架就没有了,展现的是一个统一的大页面。
我可以追加分数。
我的框架是四个。我想在点击其中的按钮的时候,或者查看相关信息是,四个框架都不要了,变成一个完整的网页。不知道这样可以吗

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<frameset rows="*,80" frameborder="NO" border="0" framespacing="0">
<frameset rows="*,80" frameborder="NO" border="0" framespacing="0">
<frameset rows="*,172" cols="*" framespacing="0" frameborder="NO" border="0">
<frame src="file:///F|/Program%20Files/Macromedia/Dreamweaver%20MX/Untitled-1" name="mainFrame">
<frame src="file:///F|/Program%20Files/Macromedia/Dreamweaver%20MX/UntitledFrame-2" name="bottomFrame" scrolling="NO" noresize>
</frameset>
<frame src="file:///F|/Program%20Files/Macromedia/Dreamweaver%20MX/UntitledFrame-3" name="bottomFrame1" scrolling="NO" noresize>
</frameset>
<frame src="file:///F|/Program%20Files/Macromedia/Dreamweaver%20MX/UntitledFrame-4" name="bottomFrame2" scrolling="NO" noresize>
</frameset>
<noframes><body>

</body></noframes>
</html>
参考技术A 如你页面分左右两个框架,左侧是菜单,右侧是详细页面
在菜单页面中加<base target="mainFrame" />,mainFrame是右侧页面的name,在frame标签中设定的。

html代码框架问题

我用<frameset rows=*>吧网页分为了上下2个区
上面用作导航,下面是显示页面
要怎么写代码才能实现点击上面不同的导航其他地方不改变,只有下面的显示页面根据导航的不同而改变?

给个临时写个例子给你,相信可以满足你的需求:
index.html页面:主页将页面分为head和center两个部分。head作为导航,center为内容显示
<html>
<head><title>Frame测试index页面</title></head>
<frameset rows="15%,*" framespacing="0">
<frame src="head.html" noresize="noresize" name="head">
<frame src="center.html" noresize="noresize" name="center">
</frameset>
</html>
-------------------------------------------
head.html页面:这个页面作为导航,要主意的是target属性是要跟index页面的frame里的name一样,href是你要在center显示的页面,显示的地方由target来决定。
<html>
<head><title>Frame测试head页面</title></head>
<body bgcolor="#EEEEEE">
<a href="http://www.baidu.com" target="center">百度一下</a><br/>
<a href="http://www.126.com" target="center">126邮箱</a>
</body>
</html>
------------------------------------
center.html页面:center默认页面
<html>
<head><title>Frame测试center页面</title></head>
<body>
<h1>这是中间页面</h1>
</body>
</html>
提示:将内容拷贝到相应的页面。共有三个文件index.html、head.html、center.html
保存后打开运行index.html即可追问

请问要是我分为上中下三个框架,
上层决定中层内容,
中层决定底层内容
这样的要如何实现?

追答

那你就在
index主页 修改

中层页面center加上连接
腾讯

参考技术A 首先你在主页面
<frameset row=*>
<frame src="a.html">(这个a.html是上面区域的导航所在的页面)
<frame src=“content-1.html"name="content">(这个content-1是一开始就显示在下方的页面)
然后根据你在a,html里面编写几个导航,再分别与各个需要与导航连接的页面做上连接就可以了!!
如在a.html里做了两个导航
<a href="content-1.html"target="content">导航一</a>
<a href="content-2.html"target="content">导航二</a>(其中content-1和content-2分别为在下面的显示页面里通过点击导航就可以变化出现的页面。)
然后就在分别编写一下这两个content-1和content-2页面就可以了。
参考技术B <a href="url" target="想显示的frame的name属性">aaa</a>;
target属性的意思 链接显示到哪里,它有以下常用值
_self; 显示在当前窗口
_blank;重新打开新窗口显示

以上是关于帮忙写一个html 框架代码 分为四个框。有嵌套。的主要内容,如果未能解决你的问题,请参考以下文章

如何用SPSS软件把调查问卷中一个维度的多个问题合成一个变量,然后进行相关分析?求大神帮帮忙。

html代码框架问题

css圆角矩形的实现有多种方法,本例的方法是根据四个角的位置,将矩形横向上分为上

python之函数嵌套与闭包

Scala Map的一个方法,根据设备编号查找并返回,求大佬帮忙写方法代码

超链接跳转嵌套完成iframe框架 页面双头双尾解决办法