In js, we often use iframe as the system framework. In child pages, value transfer between parent pages is a problem. The following is js to obtain the object js of the parent form and child form:
1. Get the elements of the parent page in the iframe subpage :
a> window.parent.document is to get the object in the document of the parent page;
b> If you want to get Methods in parent page js: window.parent.xxxx(); a>
Copy code