我有一个使用iFrame嵌入Youtube视频的HTML文件。但是在视频开始加载之前,我需要传递一个URL,因为iFrame只是一个容器。
是否可以使用Javascript进行操作?
答案 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>