- Products -


Software


NEWS


Special



- Knowledge -


Category × Tag



- Like -

公開
作成日:2021/12/17
更新日:2021/12/17

iframeで読み込まれているかを判定する方法

・javascriptで判定が可能。

・iframeで読み込まれている時は、見た目変える。といった処理が可能。

使い方



window.onload = function() {

    if (window != window.parent) {

        document.querySelector("#header_area").style.display = "none";

        document.querySelector("#content_area").style.marginTop = "10px";

    }

}


参考


https://cly7796.net/blog/javascript/determine-if-you-are-reading-in-iframe/


Category



Tag




関連記事


{{tmp.name}}

{{article.category}} {{article.title}}