javascript - Angular 2 iframe confusion - Stack Overflow

I am attempting to change the value of an element inside of an iframe in Angular 2. I have tried many t

I am attempting to change the value of an element inside of an iframe in Angular 2. I have tried many things, but am continuously unable to reference an item using getElementById(). I have a test scenario which works in one case, and not another, which is serving to confuse me even further:

ponent.html

<iframe #iframe src="assets/test.html"></iframe>

test.html

<h1 id="wow">Wow</h1>

working typescript (prints <h1 id="wow">Wow<h1>)

export class MyComponent implements AfterViewInit {

    @ViewChild('iframe') iframe: ElementRef;

    ngAfterViewInit() {
        var doc = this.iframe.nativeElement.contentDocument;
        doc.open();
        doc.write('<h1 id="wow">Wow</h1>');
        doc.close();
        console.log(doc.getElementById("wow"));
    }
}

non-working typescript (prints null)

export class MyComponent implements AfterViewInit {

    @ViewChild('iframe') iframe: ElementRef;

    ngAfterViewInit() {
        var doc = this.iframe.nativeElement.contentDocument;
        console.log(doc.getElementById("wow"));
    }
}

Question

How in the world can I get the second one to properly print the element? No matter what I do or what I put in test.html, it is always null.

I am attempting to change the value of an element inside of an iframe in Angular 2. I have tried many things, but am continuously unable to reference an item using getElementById(). I have a test scenario which works in one case, and not another, which is serving to confuse me even further:

ponent.html

<iframe #iframe src="assets/test.html"></iframe>

test.html

<h1 id="wow">Wow</h1>

working typescript (prints <h1 id="wow">Wow<h1>)

export class MyComponent implements AfterViewInit {

    @ViewChild('iframe') iframe: ElementRef;

    ngAfterViewInit() {
        var doc = this.iframe.nativeElement.contentDocument;
        doc.open();
        doc.write('<h1 id="wow">Wow</h1>');
        doc.close();
        console.log(doc.getElementById("wow"));
    }
}

non-working typescript (prints null)

export class MyComponent implements AfterViewInit {

    @ViewChild('iframe') iframe: ElementRef;

    ngAfterViewInit() {
        var doc = this.iframe.nativeElement.contentDocument;
        console.log(doc.getElementById("wow"));
    }
}

Question

How in the world can I get the second one to properly print the element? No matter what I do or what I put in test.html, it is always null.

Share Improve this question edited Mar 7, 2017 at 18:51 Jaron Thatcher asked Feb 28, 2017 at 20:43 Jaron ThatcherJaron Thatcher 8242 gold badges9 silver badges24 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

Inside ngAfterViewInit(), it's likely that test.html hasn't been loaded into iframe yet.

This can be subverted using the (load)="yourLoadFunction()" directive on your iframe like <iframe (load)="yourLoadFunction()"></iframe>

If you then move the code from ngAfterViewInit() into yourLoadFunction(), it should work correctly.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743644155a4483469.html

相关推荐

  • javascript - Angular 2 iframe confusion - Stack Overflow

    I am attempting to change the value of an element inside of an iframe in Angular 2. I have tried many t

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信