<FRAME src="inc/admin_left.htm"name=left scrolling=no id="left">
<FRAME src="inc/admin_center.htm"name=main scrolling="no">
</FRAMESET>
src: 文件的路径,既可是HTML文件,也可以是文本、ASP等;
width、height:“内部框架”区域的宽与高;
scrolling:当SRC的指定的HTML文件在指定的区域内显示不完时的滚动选项,如果设置为NO,则不出现滚动条;如为Auto:则自动出现滚动条;如为Yes,则显示滚动条。
FrameBorder:区域边框的宽度,只有0和1两个值,分别表示没有边框和有边框,为了让“内部框架”与邻近的内容相融合,常设置为0。
name:框架的名字,用来进行识别。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function c(){
alert(document.getElementById("childTextId").value);
}
</script>
</head>
<body>
<form action="">
<input type="text" value="child text" id="childTextId" name="childTextName">
<input type="text" id="childTextId2" name="childTextName2">
<input type="text" id="childTextId3" name="childTextName3">
</form>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function p(){
//在父页面中,取得子页面的内容赋给父页面[方式一]
document.getElementById('parentTextId1').value=window.frames["iframeName"].document.all('childTextName').value;
//在父页面中,取得子页面的内容赋给父页面[方式二]
document.getElementById('parentTextId2').value=iframeName.document.getElementById("childTextId").value;
}
function p2(){
//在父页面中,调用iframe子页面的JS函数
iframeName.window.c();
}
function p3(){
//在父页面中,取得本页面的内容赋给子页面[方式一]
window.frames["iframeName"].document.all('childTextName2').value=document.getElementById('parentTextId1').value;
//在父页面中,取得本页面的内容赋给子页面[方式二]
iframeName.document.getElementById("childTextId3").value=document.getElementById('parentTextId2').value;
}
</script>
</head>
<body>
<form action="">
<input type="text" id="parentTextId1">
<input type="text" id="parentTextId2">
<input type="button" onclick="p();" value="p">
<input type="button" onclick="p2();" value="p2">
<input type="button" onclick="p3();" value="p3">
</form>
<iframe src="c.html" name="iframeName"></iframe>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function c1(){
//在子页面中,取得本页面的内容赋给父页面
parent.document.getElementById("t").innerHTML=document.getElementById('childTextId').value;
}
function c2(){
//在子页面中,调用iframe父页面的JS函数
window.parent.showTextarea();
}
</script>
</head>
<body>
<form action="">
<input type="text" id="childTextId" name="childTextName" value="childText">
<input type="button" onclick="c1();" value="c1">
<input type="button" onclick="c2();" value="c2">
</form>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function showTextarea(){
alert(document.getElementById("t").value);
}
</script>
</head>
<body>
<textarea rows="0" cols="0" id="t"></textarea>
<iframe src="c2.html" name="iframeName"></iframe>
</body>
</html>