如何设置计时器以等待在html中设置iframe src?

时间:2019-06-24 16:37:55

标签: javascript html

有什么方法可以让iframe在调用src属性中的url之前等待x秒钟?我现在所拥有的立即可以立即拨打电话。我知道对于meta标签,有一个content属性可以设置为等待x秒钟吗? iframe是否有类似的东西?还是我必须使用javascript等待并引用iframe ID或名称?

"<iframe src="/api/test"/>"

1 个答案:

答案 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>