改变 iframe 的源属性(src)
- <!DOCTYPE html>
- <html>
- <body>
- <iframe id="myframe" src="/index.html"></iframe>
- <p>单击按钮以更改 iframe 中的 src 属性。</p>
- <button onclick="myFunction()">试一试</button>
- <script>
- function myFunction() {
- document.getElementById("myframe").src = "/demo/demo_iframe.html";
- }
- </script>
- </body>
- </html>