有什么方法可以让iframe在调用src属性中的url之前等待x秒钟?我现在所拥有的立即可以立即拨打电话。我知道对于meta
标签,有一个content
属性可以设置为等待x秒钟吗? iframe是否有类似的东西?还是我必须使用javascript等待并引用iframe ID或名称?
"<iframe src="/api/test"/>"
答案 0 :(得分:0)
我相信下面的代码将为您提供所需的结果。...
<html>
<head>
<title></title>
</head>
<body>
<script>
// function to set the source (src) of the iframe....
function myframe(){
var frame = document.getElementById("iframe").src = "fileName.html";
}
// call the function 3 seconds (3000 milliseconds) after page load...
setTimeout(myframe, 3000);
</script>
<iframe id="iframe" src="" height="500px" width="100%"></iframe>
</body>
</html>