我有个页是abc.jsp,在这个页中有个
<iframe id="main" name="i_main" src="welcome.jsp" scrolling="no" border="0" frameborder="0"></iframe>
welcome.jsp中,有<form name="form1">
<input type="hidden" name="name1" value="welcome">
</form>我在父页写个方法,判断子页中这个hidden的value,应该怎么引用到这个value呢?
i_main.form1.name1.value么?