拥有index.html
,并在其上打开包含其他网页"test.html"
内容的iframe。
iam关闭iframe,此刻只是更改网址
JS:
function confirmCloseIframe() {
doIt = confirm('wanna close Iframe?');
if (doIt) {
window.location = "/index.html"
}
}
此iframe后面的index.html链接不再可点击。 你现在为什么?
答案 0 :(得分:1)
这是因为你的iframe仍然是一个叠加层,因为你没有从实际页面内容移动/删除iframe ...因此它们不可点击。
您需要移动iframe或将其删除或隐藏它。