改变 iframe 的源属性(src)

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <iframe id="myframe" src="/index.html"></iframe>
  6.  
  7. <p>单击按钮以更改 iframe 中的 src 属性。</p>
  8.  
  9. <button onclick="myFunction()">试一试</button>
  10.  
  11. <script>
  12. function myFunction() {
  13. document.getElementById("myframe").src = "/demo/demo_iframe.html";
  14. }
  15. </script>
  16.  
  17. </body>
  18. </html>
  19.