当 iframe window 打开时禁用正文

disable body when iframe window is open

我想制作一个盒子,用于订阅目的。应该如何:

看起来很简单,实际上确实如此。
使用 jquery 和 css 我可以创建一个 iframe 框。但是,我面临的真正问题是:

So, i need to disable the body or something like unclickable, when the iframe is opened.

当 iframe 打开时,在整个页面上放置 DIV。

<div class="cover"></div>


.cover {
     position:fixed;
     top:0;
     bottom:0;
     left:0;
     right:0;
     z-index:2;
     color:rgba(0,0,0,0.3)
}

...只需为您的 iframe 设置更高的 z-index。