我写了个简单的例子 你看看是不是你要的
建5个页面
主页,导航,新闻,消息,帮助
主页里有 导航页
主页
|
导航---新闻
|--消息
|--帮助
//main.htm
<!--主页,显示全部内容-->
<html>
<head>
<TITLE>主页</TITLE>
</head>
<frameset rows="*">
<frameset cols="30%,*">
<frame src="navigation.htm" name="navigation" >
<frame src="main.htm" name="main" >
</frameset>
</frameset>
</html>
//navigation.htm
<!--导航页,左部的导航-->
<html>
<head>
<title>导航</title>
</head>
<body>
<a href="news.htm" target="main">新闻</a>
<p><a href="message.htm" target="main">消息</a>
<p><a href="help.htm" target="main">帮助</a>
</body>
</html>
//news.htm
<!--新闻页-->
<html>
<head>
<title>新闻</title>
</head>
<body>
你点了新闻
</body>
</html>
//message.htm
<!--消息页-->
<html>
<head>
<title>消息</title>
</head>
<body>
你点了消息
</body>
</html>
//help.htm
<!--帮助页-->
<html>
<head>
<title>帮助</title>
</head>
<body>
你点了帮助
</body>
</html>
最后放到同一文件夹里运行 main.htm即可
这是源码
[此贴子已经被作者于2006-10-24 2:08:44编辑过]