How to remove border from iframe in IE using javascript

前端 未结 5 1866
遇见更好的自我
遇见更好的自我 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:39

    The frameBorder attribute exists directly on the iframe element, is not a CSS property.

    Try with:

    iframeElement.frameBorder = 0;
    

提交回复
热议问题