我可以设置iFrame的“src”吗?

时间:2016-05-23 15:16:03

标签: javascript html iframe

我有一个使用iFrame嵌入Youtube视频的HTML文件。但是在视频开始加载之前,我需要传递一个URL,因为iFrame只是一个容器。

是否可以使用Javascript进行操作?

1 个答案:

答案 0 :(得分:1)

检查此示例是否符合您的要求

<iframe id="custom-frame" src="/test.html"></iframe>
<p>Click the button to change the value of the src attribute in the iframe </p>
<button onclick="changeFrame()">Try it</button>
<script>
      function changeFrame() {
        document.getElementById("custom-frame").src = "http://www.facebook.com";
      }
</script>