我有一些代码正在这样做以显示来自远程源的 HTML 片段。
respDiv.children[i].innerHTML = '<iframe type="content" src="about:blank" style="height:300px;width:100%;border:none;"/>';
respDiv.children[i].children[0].contentDocument.write('<style> * {font-size:12px;}</style>'+untrustedHTML);
由于远程代码注入,插件被拒绝,所以我想知道是否有任何安全的方法来做这样的事情?