Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请查看 ww.gcprive.com/happenings
我正在尝试移动在您单击“注册”按钮时加载的 iframe,使其出现在弹出窗口的前面。
有什么想法可以解决吗?
我认为css是最简单的方法。
popup#first{ z-index:900; } popup#onerfirst{ z-index:901; }
否则,您实际上可以在注册点击时删除旧的弹出窗口。
$('#first').remove();
或者你可以使用.fadeOut();而不是.remove();如果用户不创建帐户/登录,您需要再次显示弹出窗口
.fadeOut()
.remove();