我有一个asp.net网络应用程序在aspx页面中使用iFrame(称为“fraContent”)。在iFrame中,我有一个存储“计数器”值的隐藏字段(称为“hdnCounter”)。
从父aspx页面,我如何从iFrame中访问该隐藏值?
alert(document.getElementById('window.fraContent.hdnCounter').value);
似乎不起作用
答案 0 :(得分:2)
元素的ID不是window.fraContent.hdnCounter
,因此getElementById
无效。
您只想:alert(window.fraContent.document.getElementById('hdnCounter').value)