我想设置暂停5秒以显示加载的gif图片,然后再将其导入网页 顺便说一下我使用iframe并将其指向父窗口 我该怎么设置?请温柔的家伙我有点新手的脚本谢谢:D
<html>
<script>
window.parent.location = "https://www.google.com"
</script>
<center>
<img src=progress_bar.gif>
</center>
</html>
答案 0 :(得分:2)
请在脚本区域中尝试:
setTimeout(function(){
window.parent.location = "https://www.google.com"
},5000);
答案 1 :(得分:2)
使用如下所示的setTimeout来实现您想要的目标。
setTimeout(function(){
window.parent.location = "https://www.google.com"
},5000);
答案 2 :(得分:0)
使用setTimeout:
setTimeout(function(){
window.parent.location = "https://www.google.com";
}, 5000);
答案 3 :(得分:0)
也许meta-refresh-tag对你有用?
<meta http-equiv="refresh" content="2;url=http://webdesign.about.com/">
2
表示网站在2秒后重定向。
答案 4 :(得分:0)
它看起来像:
setTimeout('window.parent.location = "https://www.google.com"', 5000);