親ページからiframe内のヘッダーとフッターを表示させなくする方法
http://www.koikikukan.com/archives/2015/03/03-005555.php
上記のページの方法を試しましたがうまくいきませんでした。
<iframe id="test" src="URL"></iframe> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(function(){ $('#test').on('load', function(){ $('#test').contents().find('head').css('display','none'); }); }); </script> ---------------------------------------------------------------------------- 以上のようにしているのですが、iframeないのヘッダーは抜けない状態です。。 headの指定がよくないのでしょうか?初心者で申し訳ありません。。
可能であればご教授いただきたいです。
よろしくお願いいたします!
あなたの回答
tips
プレビュー