b页面的部分代码如下
<frameset >
<frame src="frame_a.htm">
</frameset>
使用frameset 的话 是不能在添加BODY的 frameset 会默认成body使用frameset 不需要固定在哪个格式里 可以自己决定 比如放在把<frame>放在 table里等 看你需要
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312" />
<title>欢迎光临本网站</title>
</head>
<frameset cols="200,*" frameborder="no" border="0" framespacing="0">
<frame src="left.html" name="leftFrame" noresize="noresize" id="leftFrame" />
<frame src="main.html" name="mainFrame" id="mainFrame" />
</frameset>
<noframes>
<body>
左侧加载的是left.htmlleft.html中的超链接必须加上target="mainFrame",就可以实现了
</body>
</noframes></html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)