Change background color of iframe issue

后端 未结 6 822
悲&欢浪女
悲&欢浪女 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:03

    You can do it using javascript

    • Change iframe background color
    • Change background color of the loaded page (same domain)

    Plain javascript

    var iframe = document.getElementsByTagName('iframe')[0];
    iframe.style.background = 'white';
    iframe.contentWindow.document.body.style.backgroundColor = 'white';
    

    jQuery

    $('iframe').css('background', 'white');
    $('iframe').contents().find('body').css('backgroundColor', 'white');
    

提交回复
热议问题