私は別のウェブサイトをiframeしています。しかし、私のページで実行したくないjavascript関数がページにあります。それはiframeコンテンツのjavascript機能を停止するにはどうすればよいですか?
if (top.location != location) {
top.location.href = document.location.href; }
私はこれを試しましたが、ページ全体を停止します。
function StopLoading() {
if (!document.all)
{
window.stop();
}
else
{
window.document.execCommand('Stop');
}
}
<iframe id="i_frame" onload="StopLoading()" src="http://website.com/"></iframe>
このスニペットを使用すると、iframeコンテンツは読み込まれません。 – user198989