Home  >  Article  >  Web Front-end  >  How to solve the problem of two iframes calling each other jquery and js functions on the same page

How to solve the problem of two iframes calling each other jquery and js functions on the same page

高洛峰
高洛峰Original
2016-12-28 11:08:261237browse

I haven’t updated my blog this month. Alas, I’m lazy again. Today I solved a problem about two iframes calling each other jquery function methods.

There are two iframes in a.html, as follows :


b.html There is a treeview in it, which is called the left menu iframe

c.html is the data displayed after clicking on the treeview in b.html, which is called the right page iframe.

Since there is a relationship between the two pages, which exists in a.html, the two pages can call each other's Js methods.

ps: If there is no relationship between the two pages, then let them have a relationship before they can call each other. For example, if both pages reference a js file, then they can call each other.

For example, there is a button in

c.html



function btnAlert(index) {
 $(window.parent.$("#left"))[0].contentWindow.GetIndex(index);//调用b.html中的方法
}

b.html

function GetIndex(index) { 
  $(window.parent.$("#main1")).contents().find("#hidVal").val(index);//找到c.html中的hidVal给他赋值
}

Finally summarize:

If If the iframe of c.html is in b.html, then reference the following method

1, and call the parent class function method in the child iframe:

window.parent.func();

2, get the elements of the parent interface in the child Iframe:

$("#xx", window.parent.document);

This xx is what you want to get in the parent interface The ID of the element.

3, jquery calls the js method in the sub-iframe page:

iframefunction() is the method of the sub-page

$(window.parent.document).contents() .find("#iframename")[0].contentWindow.iframefunction();

The above is the entire content of this article. I hope that the content of this article can bring some help to everyone's study or work, and at the same time I hope you will support PHP Chinese website!

For more related articles on how to solve the problem of two iframes calling each other jquery and js functions on the same page, please pay attention to the PHP Chinese website!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn