您的位置:首页 > 其它

Iframe之间及iframe与父窗体之间值的传递

2009-06-08 16:34 232 查看
Iframe之间及iframe与父窗体之间值的传递
2009-05-12 10:32
方法一:ScriptManager.RegisterClientScriptBlock(this,typeof(Page), "NoInformation", "window.parent.frames['Add'].location.reload();", true); 此: 会弹出页面刷新错误
方法二: ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "NoInformation", "window.parent.frames['Add'].location.href='DepartAdd.aspx';", true); 最好的方法 可解决跳转刷新后窗体样式的改变。

参考:

(一)父窗体调用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();

请看下面简单例子,不多解释.
父窗体:test.htm

<HTML>
<HEAD>
<TITLE> Test Page </TITLE>
<script src="prototype-1.4.0.js"></script>
<script language="javascript">
function show(){
//改变iframe中的元素id为myH1的内容
window.frames["iframe_text"].document.getElementById("myH1").innerHTML = "http://www.pint.com";
}
</script>
</HEAD>
<BODY>
<iframe height="350"  width="600" src="iframe_text.htm"
name="iframe_text"></iframe>
<form action="" method="post">
<input name="haha" id="haha" type="text" maxlength="30" value="haha"
/><br />
<textarea cols="50" rows="5" id="getAttributeMethod"></textarea>
<input type="button" onClick="show();" value="提交"/>
</form>
<h2 id="myH2">d</h2>
</BODY>
</HTML>


iframe的页面内容:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<script language="javascript">
function show(){
//改变父窗体中的元素id为myH2的内容
parent.document.getElementById("myH2").innerHTML =
"http://www.adsf.com";

}

</script>
<body>
<h1 id="myH1">ha</h1>
<form action="" method="post">
<input name="abc" id="abc" type="text" maxlength="30" value="abc" /><br
/>
<textarea cols="50" rows="10" id="text"></textarea> <br />
<input type="button" value="提交" onclick="show();"/>
</form>
</body>
</html>


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: