有index.html
,并打开 iframe,上面有其他页面"test.html"
的内容。我正在关闭 iframe,目前只是更改 url
JS:
function confirmCloseIframe() {
doIt = confirm('wanna close Iframe?');
if (doIt) {
window.location = "/index.html"
}
}
此 iframe 后面的 index.html 链接不可点击。你现在为什么?