<html>
<head>
<script>
function changeSrc()
{
document.getElementById("myframe").src="https://www.baidu.com";
}
</script>
</head>
<body>
<iframe id="myframe" src="https://shouce.ren">
<p>Your browser does not support iframes.</p>
</iframe>
<br><br>
<input type="button" onclick="changeSrc()" value="Change Source">
</body>
</html>