0

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

JS:

  function confirmCloseIframe() {

            doIt = confirm('wanna close Iframe?');

            if (doIt) {
                window.location = "/index.html"
            }
        }

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

4

1 回答 1

1

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

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

于 2013-10-07T10:03:40.360 回答