此 iframe 中的脚本可以更改父文档的背景颜色:

<script>
function myFunction() {
  parent.document.body.style.backgroundColor = "lightblue";
}
</script>