Change background color of iframe issue

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

    It is possible. With vanilla Javascript, you can use the function below for reference.

    function updateIframeBackground(iframeId) {
        var x = document.getElementById(iframeId);
        var y = (x.contentWindow || x.contentDocument);
        if (y.document) y = y.document;
        y.body.style.backgroundColor = "#2D2D2D";
    }
    

    https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_iframe_contentdocument

提交回复
热议问题