Change background color of iframe issue

后端 未结 6 819
悲&欢浪女
悲&欢浪女 2020-12-31 12:54

I need to change background color to white of the displayed page if . Is that possible? Now background of the original website is g

6条回答
  •  天涯浪人
    2020-12-31 13:05

    just building on what Chetabahana wrote, I found that adding a short delay to the JS function helped on a site I was working on. It meant that the function kicked in after the iframe loaded. You can play around with the delay.

    var delayInMilliseconds = 500; // half a second
    
    setTimeout(function() { 
    
       var iframe = document.getElementsByTagName('iframe')[0];
       iframe.style.background = 'white';
       iframe.contentWindow.document.body.style.backgroundColor = 'white';
    
    }, delayInMilliseconds);
    

    I hope this helps!

提交回复
热议问题