有一个边界显示iframe
,我无法摆脱它.
IE 6和7可以通过一点JavaScript工作:
function test(){
var iframe = document.getElementById('frame2');
iframe.contentWindow.document.body.style.backgroundColor = "#a31d1d";
iframe.contentWindow.document.body.style.border = "#a31d1d";
iframe.contentWindow.document.body.style.outlineColor = "#a31d1d";
}
Run Code Online (Sandbox Code Playgroud)
但是在IE 8中边界仍然可见.
我试图通过JavaScript插入一个iframe到浏览器DOM,并希望删除边界,如果IE但似乎无法.我试过这些无济于事:
iframeElement.style.borderStyle="none";
Run Code Online (Sandbox Code Playgroud)
和
iframeElement.style.frameBorder = "0";
Run Code Online (Sandbox Code Playgroud)
任何建议将不胜感激.