我在用户点击图标时打开了popup.html。 popup.html有一个按钮。如果单击此按钮,我想在关闭当前弹出窗口后显示来自不同html文件的另一个弹出窗口。有没有人知道怎么做。(我的按钮上已经有一个列表器。我想知道关闭当前显示的弹出窗口并打开一个新的弹出窗口。)
答案 0 :(得分:0)
弹出广告就像常规标签一样,因此window.location.href="..."
可以使用它们。
但是您可以在弹出窗口中弹出叠加层和全屏iframe,并在该窗口上覆盖一个关闭按钮。
<iframe src="http://target.com" style="position:absolute; left:0; top:0; right:0; bottom:0; width:...
等等。
答案 1 :(得分:0)
您可以使用innerHTML动态更新弹出页面
var event_container;
event_container = document.getElementById('element ID');//Get location of event container
event_container.innerHTML = event_container.innerHTML + "html string you want to add";