代码示例:(标识:hdom_iframe_src_set)
<!DOCTYPE html>
<html>
<body>

<iframe id="myframe" src="/index.php"></iframe>

<p>单击按钮以更改 iframe 中的 src 属性。</p>

<button onclick="myFunction()">试一试</button>

<script>
function myFunction() {
  document.getElementById("myframe").src = "/static/demo/html/demo_iframe.html";
}
</script>

</body>
</html>
运行结果: