910e62b5创建于 1月15日历史提交
<html>
<head></head>
<body>
  <p>This page injects content into its blank iframe.
  <p><iframe id="frame1"></iframe>
  <script>
    var f = document.getElementById("frame1");
    f.contentDocument.body.innerHTML = "Injected text";
  </script>
</body>
</html>