HTML5 の助けを借りて!
これをiframeに追加するだけです:
sandbox="allow-scripts"
この iframe サンドボックス機能は、iframe 内のすべてがページをリダイレクトしたり、トップ フレーム ナビゲーションを実行したりするのを防ぎます。
必要な値は次のとおりです。
allow-scripts - Allows script execution
必要のない他の 3 つのサンドボックス オプションは次のとおりです。
allow-same-origin - Allows the iframe content to be treated as being from the same origin as the containing document
allow-forms - Allows form submission
allow-top-navigation - Allows the iframe content to navigate (load) content from the containing document
完全に「サンドボックス化された」iframe:
sandbox=""
完全対応の iframe:
sandbox="allow-scripts allow-forms allow-same-origin allow-top-navigation"
(または単にプロパティを省略)