如何在IE8中摆脱iframe的边框

Pep*_*oyd 18 javascript css iframe jquery internet-explorer-8

我正在创建一个带有iframe的对话框,问题是边框一直在IE8中显示,这在任何其他浏览器中都能很好地工作.

这是我试过的,我也尝试过border:none

$(d.dialog).find('#MyCoolDialogInner').html('<iframe src="/apex/EscalationForm?id={!Case.Id}" height="495" width="380" marginheight="0" marginwidth="0" frameborder="0"/>'); 
Run Code Online (Sandbox Code Playgroud)

提前致谢

Ano*_*oop 47

添加frameBorder属性(注意大写'B').

所以它看起来像:

<iframe frameBorder="0">Browser not compatible.</iframe>
Run Code Online (Sandbox Code Playgroud)