主页面:
<head>
<script>
function getiframe()
{
var iframebody=document.subframe
alert(iframebody.body.innerHTML);
}
</script>
</head>
<body>主页面内容<br>
<iframe name="subframe" src="iframe.htm">111</iframe>
<input type="button" value="get" onclick="getiframe()" />
</body>
=======================================================
子页面:
<html>
<head>
<title>框架标题</title>
</head>
<body id="body">
<div id="bodybox" name="bodybox">
<h1 id="sh1">这是子框架内的内容</h1>
<form name="form1" >
<input name="text" value="ok" />
</form>
</div>
</body>
<html>