Some problems in IFRAME programming

Source: Internet
Author: User

A few days ago to do an IFRAME display diagram of the demo, found the contentdocument binding to the IFRAME

The onclick event is not valid, and the onclick of the iframe.contentdocument in the page

The property is undefined, and when the IFRAME is removed from the SRC attribute, the event takes effect when the OnClick event is bound to it;

Compared to the original when the Iframe.contentdocument binding event, the IFRAME has not yet loaded

Complete, the event handler can be bound for contentdocument, but it cannot be executed.

Because Contentdocument is empty at this point, you can observe that the URL of this page is About:blank

  

        var f = document.createelement (' iframe ');         = '.. /promise/promise.html ';        Document.body.appendChild (f)        function() {console.log (123)}        Console.log ( F.contentdocument.onclick)    

and

        function () {            function() {console.log (123)}            console.log (F.contentdocument.onclick)        }    

Wait for the IFRAME to load and then bind the event to resolve the issue.

Some problems in IFRAME programming

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.