我想隐藏iframe内的特定元素。我尝试了ElementRef。但是当我使用getElementsByClassName('example-class')时,它返回空。这是我的代码
this.iframe.nativeElement.onload = function() {
const els = self.iframe.nativeElement.contentDocument.getElementsByClassName('hidden-xs');
if (els.length > 0) {
els[0].style.display = 'none';
}
};
我还尝试了iframe onload,ngoninit和ngafterviewinit。