javascript 获取父页面中元素对象方法

父页面中:

<input type="hidden" id="areaID" value="test1">

<iframe align="center" style="width: 100%; height: 100%;" frameborder="0" scrolling="no" src="Html//test.jsp"></iframe>

<iframe id="ifra2" align="center" style="width: 100%; height: 100%;" frameborder="0" scrolling="no" src="Html/test2.jsp"></iframe>

test.jsp中获取父页面中元素的方法:

parent.document.getElementById("areaID").value=row.ID;

test.jsp中获取父页面中iframe元素的方法:
var child = parent.document.getElementById("ifra2").contentWindow;//ifra2这个id是父页面iframe的id
child.initRealTimeGrid("bb");//调用ifra2中页面中的方法;

上一篇:ACM第四站————最小生成树(普里姆算法)


下一篇:Boyer-Moore Majority Vote Algorithm