是否可以重定向iframe以在完整窗口中显示2秒后的帧内容(相同窗口,而不是新窗口)。我希望有一个PHP解决方案。
答案 0 :(得分:0)
您将需要使用客户端语言 - 即JavaScript。
这是一个开始
setTimeout(function() {
var frameElement = document.getElementById('my-iframe');
// get iframe URL
// window.open(iFrameUrl, '_self');
}, 2000);
答案 1 :(得分:0)
看起来您可以在JavaScript中使用'top'对象的location属性。
This link似乎更充分地描述了这种方法。