发布网友 发布时间:2023-04-27 22:45
共2个回答
热心网友 时间:2023-05-20 22:40
使用iframe或者是frameset即可。。。改变他们的src,就是对应的html文件。。。追问让我参考下代码追答<!DOCTYPE HTML>
<html>
<head>
<title>Page Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Description" />
<link rel="stylesheet" href="Stylesheet Location" type="text/css" />
</head>
<frameset rows="20%,65%,*" cols="*" frameborder="NO" border="0"
framespacing="0">
<frame src="top.html" name="topFrame" scrolling="NO" noresize>
<frameset cols="200,*" frameborder="NO" border="0" framespacing="0">
<frame src="left.html" scrolling="auto" name="leftFrame" noresize>
<frame src="main.html" id="main" scrolling="auto" name="mainFrame" noresize>
</frameset>
<frame src="foot.html" scrolling="auto" name="footFrame" noresize>
</frameset>
<noframes>
<body>
</body>
</noframes>
</html>
热心网友 时间:2023-05-20 22:41
这就是一个普通的选项卡啊,网上js代码很多的