<iframe #orbitIframe [src]="chargeHtml|safe" width="100%" height="100%" frameborder="0" align="center"></iframe>
window.document.body.innerHTML = document.getElementById('orbitIframe').contentWindow.document.getElementsByTagName('body').innerHTML
这样会提示contentWindow' does not exist on type 'HTMLElement'
const iframe = document.getElementById('orbitIframe');
const iframeWin = (<HTMLIFrameElement> iframe).contentWindow;
你加上一个<HTMLIFrameElement>即可,不过应该也拿不到数据吧。