admin管理员组文章数量:1341411
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.
1 Answer
Reset to default 10Inside 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.
本文标签: javascriptAngular 2 iframe confusionStack Overflow
版权声明:本文标题:javascript - Angular 2 iframe confusion - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743644155a2515221.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论