父页面调用内嵌iframe页面表单里的值
在a.htm:
<iframe src="bgpic.asp" id="llll" name="llll" scrolling="auto" allowtransparency="true" frameborder="0" height="100" width="100%"></iframe>
function getFrameValue()
{
document.wishwrite.bgpic.value=document.llll.bgpicform.bgpic.value;;
document.wishwrite.bgmusic.value="../wishmusic/hahan.rm";
return true;
}
<form name="wishwrite" method="post" action="show.asp" onSubmit="return getFrameValue();“>
在bgpic.asp:
<form name="bgpicform" action="" method="get"><INPUT id="bgpic" type=radio value="<%= rs("picurl")%>" name="bgpic"> </form>
结果在a.htm 提交的时候 bgpic 取到的值:undefined