How to remove border from iframe in IE using javascript

前端 未结 5 1831
遇见更好的自我
遇见更好的自我 2021-01-11 17:24

I am trying to insert an iframe into the browser DOM via javascript and want to remove the border if IE but can\'t seem to. I have tried these to no avail:

i         


        
5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-11 17:53

    Bizarrely, I was looking for an answer to this very issue myself earlier today. I found that setting the frameBorder to 0 property does work, so long as you do it before the iframe is added to the document.

    var iframe = document.createElement("iframe");
    iframe.frameBorder = 0;
    document.body.appendChild(iframe);
    

提交回复
热议问题