<html>
<body>
<iframe id="myFrame" src="/index.html"></iframe>
<p>单击该按钮可更改 iframe 中 src 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
document.getElementById("myFrame").src = "https://wwf.org";
}
</script>
</body>
</html>