两个不同frame之间调用对方的办法

iframe里的页面调用父窗口的程序:
parent.函数名();
parent.变量名

父窗口调用子窗口的程序:
document.frames['框架名'].函数名();
document.frames['框架名'].变量名;

所以你需要的A框架调用B框架的程序写法比较复杂点
parent.document.frames['框架B'].函数名()

 


 

 

举例
父窗口代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
</head>
<body>
<p><iframe name="I1" src="new_page_2.htm">浏览器不支持嵌入式框架,或被配置为不显示嵌入式框架。</iframe>
<iframe name="I2" src="new_page_3.htm">浏览器不支持嵌入式框架,或被配置为不显示嵌入式框架。</iframe></p>
</body>
</html>


I1里的代码:
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 2</title>
</head>

<body>
<script language=javascript>
function alertA(){
alert('a');
}
</script>
</body>

</html>

I2里的代码:
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 3</title>
</head>

<body>

<p><input type="button" value="按钮" name="B3" οnclick="parent.document.frames['I1'].alertA();"></p>

</body>

</html>


运行父窗口,点击按钮即可执行I1的代码

 

转:http://topic.csdn.net/u/20100517/09/9292a841-d2ff-4414-a7ef-b3a1b38de6e2.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值