Asp.net将变量从Body传递给iframe

时间:2015-10-13 13:10:51

标签: javascript c# html asp.net iframe

所以我创建了一个小的asp.net网页,其中包含一个文本框和一个按钮,我还为一个带有" label1"的网页添加了一个iframe。标题, 我希望用户在文本框中输入一个单词,一旦单击按钮Lable1.text将更改..所以基本上我想将数据从父文本框传递到iframe标签,有人可以指导我, 我正在使用Asp.net 非常感谢

1 个答案:

答案 0 :(得分:0)

告诉你一般概念,而不是asp.net具体。

您可以为iframe分配ID,然后您可以从父页面访问该iframe的文档,如下所示 -

//fraChild is the ID of the iframe
var objIframe = document.getElementById("fraChild"); 

//for sake of simplicity, lblTitle is a div created in the iframe 
//and that can be accessed as shown below
objIframe.contentWindow.document.getElementById("lblTitle").innerHTML = "blah blah ..."

我希望这有助于获得这个想法。