从asp.net中的iFrame获取值

时间:2011-08-24 14:17:11

标签: javascript asp.net iframe

我有一个asp.net网络应用程序在aspx页面中使用iFrame(称为“fraContent”)。在iFrame中,我有一个存储“计数器”值的隐藏字段(称为“hdnCounter”)。

从父aspx页面,我如何从iFrame中访问该隐藏值?

alert(document.getElementById('window.fraContent.hdnCounter').value);似乎不起作用

1 个答案:

答案 0 :(得分:2)

元素的ID不是window.fraContent.hdnCounter,因此getElementById无效。

您只想:alert(window.fraContent.document.getElementById('hdnCounter').value)