一,父窗体调用iframe子窗体
1、将子iframe中text的值赋给父窗体中一个text
复制代码 代码示例:
document.getElementById('applyDate').value=window.frames["capitalList"].document.all('applytime').value;
2、父窗体中的一个按钮onclick触发子iframe中form的button1服务器端事件
复制代码 代码示例:
window.frames(“capitallist”).document.forms.item(0).button1.click();或写作:
window.frames(“capitallist”).document.form1.button1.click();
二,iframe子窗体调用父窗体
1、子iframe中的form的button的onclick事件给父窗体的一个text赋值
复制代码 代码示例:
window.parent.document.all('applyDate').value=document.getElementById('applytime').value;
2、子页面调用父窗体的某个按钮的按钮事件
复制代码 代码示例:
window.parent.form1.button1.click()
三,iframe子窗体之间相互调用
复制代码 代码示例:
//右边iframe中页面的按钮调用左边的iframe中的页面,让左边页面得以刷新
parent.frame(“menu”).window.location.reload();
iframe窗体间传值的内容,就介绍这些吧,希望对大家有所帮助。
学习html教程,就来脚本学堂 www.jb200.com。