关闭后单击链接不可用

clicking on links after closed iframe not available

本文关键字:链接 单击      更新时间:2023-09-26

index.html,并打开带有其他页面内容的iframe,"test.html"在其顶部。我正在关闭iframe,目前只是更改URL

.JS:

  function confirmCloseIframe() {
            doIt = confirm('wanna close Iframe?');
            if (doIt) {
                window.location = "/index.html"
            }
        }

索引的链接.html在此iframe后面不是更可点击的。你现在为什么?

那是因为您的 iframe 仍然是一个叠加层,因为您还没有从实际页面内容中移动/删除 iframe...因此,它们不可点击。

您需要移动 iframe,或者将其删除或隐藏。