<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<frameset rows="90,*"  framespacing="0" frameborder="NO" border="0">
<noframes>您的浏览器不支持框架</noframes>
<frame src="top.html" name="top" scrolling="NO" noresize id="top">
<!--<frame src="empty_a.html" name="empty" scrolling="NO"  id="empty"> -->
<frameset  cols="190,*" framespacing="0" frameborder="NO" border="0">
<frame src="nav.html" name="left" scrolling="anto" noresize d="left">
<frame src="body.html?" name="right" scrolling="auto"  id="right">
<noframes>您的浏览器不支持框架</noframes>
</frameset>
</frameset>
</head><body>
</body>
</html>在body.html中
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<script>
function save(){
window.parent.top.document.form1.action='url'; //设定提交的地址
window.parent.top.document.form1.submit();  //对应<frame src="top.html" name="top" scrolling="NO" noresize id="top">
window.parent.left.document.form1.action='url'; 
window.parent.left.document.form1.submit(); //对应<frame src="nav.html" name="left" scrolling="anto" noresize id="left">
document.form1.action='url';
document.form1.submit();}
</script>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD><BODY>
<form name = 'form1'action="" method="post" >
<input type = "submit" onclick = "save()">
</form>
</BODY>
</HTML>没有测试  但是大概就是这个意思了