JavaScript does not perform cross-origin operations on the DOM in iframe, jsiframedom

Source: Internet
Author: User

JavaScript does not perform cross-origin operations on the DOM in iframe, jsiframedom

Here, we can simply describe the DOM in B .html in index.html, not in cross-domain situations.

For example, if iframe is introduced in index.html, how can I use JS to operate DOM elements in iframe in index?

First, paste the.html content introduced by index.html and iframe.

index-><div class="d1"><iframe src="a.html" frameborder="0" name="one" id="iframeId"></iframe></div>

A.html

<Div id = "dd"> 

Method 1:

var d=window.frames["one"].window;d.onload=function(){console.log(d.document.getElementById("dd"));}; 

Method 2:

JS dynamically creates iframe and inserts

Var ifr = document. createElement ('iframe'); ifr. src = 'a.html '; document. body. appendChild (ifr); ifr. onload = function () {var doc = ifr. contentDocument | ifr.contentcontactdoc ument; // click B .html console here. log (doc. getElementById ("dd "));};

Both outputs are

The above section describes the DOM related knowledge in the iframe file for JS not cross-origin operations. I hope to help you!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.