|
tt.htm
<html><head><title></title></head><body>
这是主框架
<script language="javascript">
function aa(){
open("tt_2.htm","_blank","top=0,left=500,width=300,height=300")
}
</script>
<span style="cursor: hand;border:1px red solid;width:200px;text-align:center;" onclick="aa()">点击弹出新页面</span>
<iframe src="tt_1.htm" name="tt_1" width="100%" height="50%" frameborder="1">
</body>
tt_1.htm
<html><head><title></title></head><body>
这是TT_1框架
<form name="form1">
<input type="text" value="" name="name">
</form>
</body></html>
tt_2.htm
<html><head><title></title></head><body>
<script language="javascript">
function aaa(a){
if(a==1){
opener.document.tt_1.form1.name.value="改变了";
}else{opener.document.tt_1.form1.name.value="";}}
</script>
这是弹出的页面
<span style="cursor: hand;border:1px red solid;width:200px;text-align:center;" onclick="aaa(1)">点击改变TT_1</span>
<span style="cursor: hand;border:1px red solid;width:200px;text-align:center;" onclick="aaa(2)">点击清空TT_1</span>
</body> |
|